filesystems.sh 184 B

123456789101112
  1. #!/bin/sh
  2. export PATH=/usr/bin:/usr/sbin:/bin:/sbin
  3. set -e
  4. if [ "$1" != "stop" ]; then
  5. echo "Mounting auxillary filesystems...."
  6. swapon /swapfile
  7. mount -avt noproc,nonfs
  8. fi;