| Commit | Line | Data |
|---|---|---|
| 62421adc MD |
1 | #!/bin/csh |
| 2 | # | |
| 3 | # This will format a new machine with a BOOT+HAMMER setup and install | |
| 4 | # the live CD. You would boot the live CD, dhclient your network up, | |
| 5 | # then run 'rconfig :hammer', assuming you have a rconfig server on the | |
| 6 | # LAN. Alternately fetch the script from a known location and just run it. | |
| 7 | # | |
| 8 | # ad6s1a will be setup as a small UFS /boot. ad6s1d will be setup as | |
| 9 | # HAMMER with all remaining disk space. Pseudo file-systems will be | |
| 10 | # created for /var, /usr, etc (giving them separate inode spaces and | |
| 11 | # backup domains). | |
| 12 | # | |
| 13 | # WARNING: HAMMER filesystems (and pseudo-filesystems) must be | |
| 14 | # occassionally pruned and reblocked. 'man hammer' for more information. | |
| 15 | # | |
| 31927be5 | 16 | # $DragonFly: src/share/examples/rconfig/hammer.sh,v 1.4 2008/10/21 14:02:48 swildner Exp $ |
| 62421adc MD |
17 | |
| 18 | set disk = "ad6" | |
| 19 | ||
| 20 | # For safety this only runs on a CD-booted machine | |
| 21 | # | |
| 22 | df / | awk '{ print $1; }' | fgrep cd | |
| 23 | if ( $status > 0 ) then | |
| 24 | echo "This program formats your disk and you didn't run it from" | |
| 25 | echo "A CD boot!" | |
| 26 | exit 1 | |
| 27 | endif | |
| 28 | ||
| 29 | echo "This program formats disk ${disk}! Hit ^C now or its gone." | |
| 30 | foreach i ( 10 9 8 7 6 5 4 3 2 1 ) | |
| 31 | echo -n " $i" | |
| 2eca69e6 | 32 | sleep 1 |
| 62421adc MD |
33 | end |
| 34 | echo "" | |
| 62421adc MD |
35 | |
| 36 | # Unmount any prior mounts on /mnt, reverse order to unwind | |
| 37 | # sub-directory mounts. | |
| 38 | # | |
| 39 | foreach i ( `df | fgrep /mnt | awk '{ print $6; }' | tail -r` ) | |
| 40 | echo "UMOUNT $i" | |
| 41 | umount $i | |
| 42 | end | |
| 43 | ||
| 44 | # Set our disk here | |
| 45 | # | |
| 46 | sleep 1 | |
| 47 | set echo | |
| 48 | ||
| 49 | # Format and label the disk. | |
| 50 | # | |
| 51 | # 'a' small UFS boot | |
| 52 | # 'd' HAMMER filesystem | |
| 53 | # | |
| 54 | # Use PFSs for backup domain separation | |
| 55 | # | |
| 91604a1e | 56 | dd if=/dev/zero of=/dev/${disk} bs=32k count=16 |
| 62421adc | 57 | fdisk -IB ${disk} |
| fb422cca SW |
58 | disklabel64 -r -w ${disk}s1 auto |
| 59 | disklabel64 -B ${disk}s1 | |
| 60 | disklabel64 ${disk}s1 > /tmp/label | |
| 62421adc | 61 | cat >> /tmp/label << EOF |
| fb422cca | 62 | a: 256m 0 4.2BSD |
| 62421adc | 63 | b: 2g * swap |
| b034d49e | 64 | d: * * HAMMER |
| 62421adc | 65 | EOF |
| fb422cca | 66 | disklabel64 -R ${disk}s1 /tmp/label |
| 62421adc MD |
67 | |
| 68 | newfs /dev/${disk}s1a | |
| 69 | newfs_hammer -L ROOT /dev/${disk}s1d | |
| 70 | ||
| 71 | # Mount it | |
| 72 | # | |
| 73 | mount_hammer /dev/${disk}s1d /mnt | |
| 74 | mkdir /mnt/boot | |
| 75 | mount /dev/${disk}s1a /mnt/boot | |
| 76 | ||
| 77 | # Create PFS mount points for nullfs. | |
| 78 | # | |
| 79 | # Do the mounts manually so we can install the system, setup | |
| 80 | # the fstab later on. | |
| 81 | mkdir /mnt/pfs | |
| 82 | ||
| 83 | hammer pfs-master /mnt/pfs/usr | |
| 84 | hammer pfs-master /mnt/pfs/usr.obj | |
| 85 | hammer pfs-master /mnt/pfs/var | |
| 86 | hammer pfs-master /mnt/pfs/var.crash | |
| 87 | hammer pfs-master /mnt/pfs/var.tmp | |
| 88 | hammer pfs-master /mnt/pfs/tmp | |
| 89 | hammer pfs-master /mnt/pfs/home | |
| 90 | ||
| 91 | mkdir /mnt/usr | |
| 92 | mkdir /mnt/var | |
| 93 | mkdir /mnt/tmp | |
| 94 | mkdir /mnt/home | |
| 95 | ||
| 96 | mount_null /mnt/pfs/usr /mnt/usr | |
| 97 | mount_null /mnt/pfs/var /mnt/var | |
| 98 | mount_null /mnt/pfs/tmp /mnt/tmp | |
| 99 | mount_null /mnt/pfs/home /mnt/home | |
| 100 | ||
| 101 | mkdir /mnt/usr/obj | |
| 102 | mkdir /mnt/var/tmp | |
| 103 | mkdir /mnt/var/crash | |
| 104 | ||
| 105 | mount_null /mnt/pfs/var.tmp /mnt/var/tmp | |
| 106 | mount_null /mnt/pfs/var.crash /mnt/var/crash | |
| 107 | mount_null /mnt/pfs/usr.obj /mnt/usr/obj | |
| 108 | ||
| 109 | chmod 1777 /mnt/tmp | |
| 110 | chmod 1777 /mnt/var/tmp | |
| 111 | ||
| 62421adc MD |
112 | # Install the system from the live CD |
| 113 | # | |
| 114 | cpdup -o / /mnt | |
| 3875f5b0 MD |
115 | cpdup -o /boot /mnt/boot |
| 116 | cpdup -o /usr /mnt/usr | |
| 62421adc MD |
117 | cpdup -o /var /mnt/var |
| 118 | cpdup -o /dev /mnt/dev | |
| 119 | cpdup -i0 /etc.hdd /mnt/etc | |
| 120 | ||
| fb422cca SW |
121 | chflags -R nohistory /mnt/tmp |
| 122 | chflags -R nohistory /mnt/var/tmp | |
| 123 | chflags -R nohistory /mnt/var/crash | |
| 124 | chflags -R nohistory /mnt/usr/obj | |
| 125 | ||
| 62421adc MD |
126 | # Create some directories to be used for NFS mounts later on. |
| 127 | # Edit as desired. | |
| 128 | # | |
| 129 | foreach i ( /proc /usr/doc /usr/src /repository /ftp /archive ) | |
| 130 | if ( ! -d /mnt$i ) then | |
| 131 | mkdir /mnt$i | |
| 132 | endif | |
| 133 | end | |
| 134 | ||
| 135 | cat > /mnt/etc/fstab << EOF | |
| 136 | # Device Mountpoint FStype Options Dump Pass# | |
| 137 | /dev/${disk}s1d / hammer rw 1 1 | |
| 138 | /dev/${disk}s1a /boot ufs rw 1 1 | |
| 31927be5 | 139 | /dev/${disk}s1b none swap sw 0 0 |
| 62421adc MD |
140 | /pfs/usr /usr null rw 0 0 |
| 141 | /pfs/var /var null rw 0 0 | |
| 142 | /pfs/tmp /tmp null rw 0 0 | |
| 143 | /pfs/home /home null rw 0 0 | |
| 144 | /pfs/var.tmp /var/tmp null rw 0 0 | |
| 145 | /pfs/usr.obj /usr/obj null rw 0 0 | |
| 146 | /pfs/var.crash /var/crash null rw 0 0 | |
| 147 | proc /proc procfs rw 0 0 | |
| 148 | # misc NFS mounts to get your test box access to 'stuff' | |
| 149 | #crater:/repository /repository nfs ro,intr,bg 0 0 | |
| 150 | #crater:/usr/doc /usr/doc nfs ro,intr,bg 0 0 | |
| 151 | #crater:/ftp /ftp nfs ro,intr,bg 0 0 | |
| 152 | #crater:/sources/HEAD /usr/src nfs ro,intr,bg 0 0 | |
| 153 | #pkgbox:/archive /archive nfs ro,intr,bg 0 0 | |
| 154 | EOF | |
| 155 | ||
| 156 | # Because root is not on the boot partition we have to tell the loader | |
| 157 | # to tell the kernel where root is. | |
| 158 | # | |
| 159 | cat > /mnt/boot/loader.conf << EOF | |
| 160 | vfs.root.mountfrom="hammer:${disk}s1d" | |
| 161 | EOF | |
| 162 | ||
| 163 | # Setup interface, configuration, sshd | |
| 164 | # | |
| 165 | set ifc = `route -n get default | fgrep interface | awk '{ print $2; }'` | |
| 166 | set ip = `ifconfig $ifc | fgrep inet | fgrep -v inet6 | awk '{ print $2; }'` | |
| 167 | set lip = `echo $ip | awk -F . '{ print $4; }'` | |
| 168 | ||
| 169 | echo -n "ifconfig_$ifc=" >> /mnt/etc/rc.conf | |
| 170 | echo '"DHCP"' >> /mnt/etc/rc.conf | |
| 171 | cat >> /mnt/etc/rc.conf << EOF | |
| 172 | sshd_enable="YES" | |
| 173 | dntpd_enable="YES" | |
| 174 | hostname="test$lip.MYDOMAIN.XXX" | |
| 175 | dumpdev="/dev/${disk}s1b" | |
| 176 | EOF | |
| 177 | ||
| 178 | # Misc sysctls | |
| 179 | # | |
| 180 | cat >> /mnt/etc/sysctl.conf << EOF | |
| 181 | #net.inet.ip.portrange.first=4000 | |
| 182 | EOF | |
| 183 | ||
| 184 | # adjust work directory for pkgsrc in case we want | |
| 185 | # to mount /usr/pkgsrc read-only. | |
| 186 | # | |
| 187 | cat >> /mnt/usr/pkg/etc/mk.conf << EOF | |
| 188 | .ifdef BSD_PKG_MK # begin pkgsrc settings | |
| 189 | WRKOBJDIR= /usr/obj/pkgsrc | |
| 190 | .endif # end pkgsrc settings | |
| 191 | EOF | |
| 192 | ||
| 62421adc MD |
193 | # Allow sshd root logins via dsa key only |
| 194 | # | |
| 195 | fgrep 'PermitRootLogin without-password' /mnt/etc/ssh/sshd_config >& /dev/null | |
| 196 | if ( $?status ) then | |
| 197 | echo "PermitRootLogin without-password" >> /mnt/etc/ssh/sshd_config | |
| 198 | endif | |
| 199 | ||
| 200 | # additional loader.conf stuff | |
| 201 | #cat >> /mnt/boot/loader.conf << EOF | |
| 202 | #if_nfe_load="YES" | |
| 203 | #EOF | |
| 204 | ||
| 205 | # Get sshd working - auto install my key so I can login. | |
| 206 | # | |
| 207 | #mkdir -p /mnt/root/.ssh | |
| 208 | #cat > /mnt/root/.ssh/authorized_keys << EOF | |
| 209 | #ssh-dss ... | |
| 210 | #EOF | |
| 211 | ||
| 212 | if ( ! -f /mnt/etc/ssh/ssh_host_dsa_key ) then | |
| 213 | cd /mnt/etc/ssh | |
| 214 | ssh-keygen -t dsa -f ssh_host_dsa_key -N "" | |
| 215 | endif | |
| 216 | ||
| 217 | # take CD out and reboot | |
| 218 | # |