Browse Source

echo correct SWAP size

v1.3
Christian Rotzoll 6 years ago
parent
commit
af56f59b85
  1. 2
      home.admin/90finishSetup.sh

2
home.admin/90finishSetup.sh

@ -11,7 +11,7 @@ swapExists=$(swapon -s | grep -c /mnt/hdd/swapfile)
if [ ${swapExists} -eq 1 ]; then if [ ${swapExists} -eq 1 ]; then
echo "SWAP on HDD already exists" echo "SWAP on HDD already exists"
else else
echo "No SWAP found ... creating 1GB SWAP on HDD" echo "No SWAP found ... creating 2GB SWAP on HDD"
sudo sed -i "12s/.*/CONF_SWAPFILE=\/mnt\/hdd\/swapfile/" /etc/dphys-swapfile sudo sed -i "12s/.*/CONF_SWAPFILE=\/mnt\/hdd\/swapfile/" /etc/dphys-swapfile
# comment or delete the CONF_SWAPSIZE line. It will then be created dynamically # comment or delete the CONF_SWAPSIZE line. It will then be created dynamically
sudo sed -i "16s/.*/#CONF_SWAPSIZE=/" /etc/dphys-swapfile sudo sed -i "16s/.*/#CONF_SWAPSIZE=/" /etc/dphys-swapfile

Loading…
Cancel
Save