/[smeserver]/cdrom.image/sme10/netinstall/ks.cfg
ViewVC logotype

Diff of /cdrom.image/sme10/netinstall/ks.cfg

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.2 by chrissn, Wed Nov 25 14:10:36 2020 UTC Revision 1.4 by chrissn, Sun Jan 31 00:15:05 2021 UTC
# Line 9  services --disabled=lm_sensors Line 9  services --disabled=lm_sensors
9    
10  # Default root pass, will be changed in post-install process anyway  # Default root pass, will be changed in post-install process anyway
11  rootpw --lock  rootpw --lock
12    user --name=installer --uid=9999
13    
14  # Accept EULA  # Accept EULA
15  eula --agreed  eula --agreed
# Line 22  eula --agreed Line 23  eula --agreed
23    
24    
25  # Add netinstall repos  # Add netinstall repos
26  url --url https://mirror.canada.pialasse.com/releases/testing/10/smeos/x86_64/  url --url  https://mirror.canada.pialasse.com/releases/testing/10/smeos/x86_64/
27  repo --name=smeupdates --baseurl=https://mirror.canada.pialasse.com/releases/testing/10/smeupdates/x86_64/  repo --name=smeupdates --baseurl=https://mirror.canada.pialasse.com/releases/testing/10/smeupdates/x86_64/
28    
29  # Packages to install  # Packages to install
# Line 126  EOF Line 127  EOF
127      # from https://wiki.contribs.org/Raid      # from https://wiki.contribs.org/Raid
128      # 2 Drives - Software RAID 1      # 2 Drives - Software RAID 1
129      # 3 Drives - Software RAID 1 + 1 Hot-spare      # 3 Drives - Software RAID 1 + 1 Hot-spare
130      # 4-6 Drives - Software RAID 5 + 1 Hot-spare      # 4 Drives - Software RAID 6
131      # 7+ Drives - Software RAID 6 + 1 Hot-spare      # 5+ Drives - Software RAID 6 + 1 Hot-spare
132    
133      if [ ${#DRIVES[@]} == 2 ] ; then      if [ ${#DRIVES[@]} == 2 ] ; then
134        LEVEL=1        LEVEL=1
# Line 135  EOF Line 136  EOF
136      elif [ ${#DRIVES[@]} == 3 ] ; then      elif [ ${#DRIVES[@]} == 3 ] ; then
137        LEVEL=1        LEVEL=1
138        SPARE=1        SPARE=1
139      elif (( ${#DRIVES[@]} > 3 && ${#DRIVES[@]} <= 6 )) ; then      elif [ ${#DRIVES[@]} == 4 ] ; then
140        LEVEL=5        LEVEL=6
141        SPARE=1        SPARE=0
142      else      else
143        LEVEL=6        LEVEL=6
144        SPARE=1        SPARE=1
# Line 150  EOF Line 151  EOF
151            
152      # Include the EFI partition if necessary      # Include the EFI partition if necessary
153      if [ -d /sys/firmware/efi ] ; then      if [ -d /sys/firmware/efi ] ; then
154        printf "raid /boot/efi --fstype=efi --level=1 --spares=%s --device=md9 %s\n" "$SPARE" "$EFIDEVS" >> /tmp/part-include        printf "raid /boot/efi --fstype=efi --level=1 --spares=0 --device=md9 %s\n" "$EFIDEVS" >> /tmp/part-include
155      fi      fi
156    
157      printf "raid /boot --fstype=xfs --level=1 --spares=%s --device=md0 %s\n" "$SPARE" "$BOOTDEVS" >> /tmp/part-include      printf "raid /boot --fstype=xfs --level=1 --spares=0 --device=md0 %s\n" "$BOOTDEVS" >> /tmp/part-include
158      printf "raid pv.01 --level=%s --spares=%s --device=md1 %s\n" "$LEVEL" "$SPARE" "$ROOTDEVS" >> /tmp/part-include      printf "raid pv.01 --level=%s --spares=%s --device=md1 %s\n" "$LEVEL" "$SPARE" "$ROOTDEVS" >> /tmp/part-include
159    
160      # Set up LVM      # Set up LVM
# Line 171  fi Line 172  fi
172    
173  # SME events in post-install  # SME events in post-install
174  %post  --interpreter=/usr/bin/bash --log=/var/log/ks.post02.log  %post  --interpreter=/usr/bin/bash --log=/var/log/ks.post02.log
175  /sbin/rsyslogd;  userdel -r installer
176  sleep 2;  sleep 2
177  /sbin/e-smith/signal-event post-install;  /sbin/rsyslogd
178  sleep 2;  sleep 2
179  /sbin/e-smith/db configuration set UnsavedChanges no;  /sbin/e-smith/signal-event post-install
180    sleep 2
181    /sbin/e-smith/db configuration set UnsavedChanges no
182  touch /forcequotacheck  touch /forcequotacheck
183  %end  %end
184    


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed