Browse Source

Fixed Swap file permission

bugfixes
gau1991 10 years ago
parent
commit
6bc8460627
  1. 10
      src/lib/ee_lib_swap.sh

10
src/lib/ee_lib_swap.sh

@ -17,6 +17,11 @@ function ee_lib_swap()
mkswap /ee-swapfile &>> $EE_COMMAND_LOG \
|| ee_lib_error "Unable to create swapfile, exit status = " $?
# Change Permission for swapfile
chown root:root /ee-swapfile &&
chmod 0600 /ee-swapfile \
|| ee_lib_error "Unable to change Swapfile permission, exit status = " $?
# On the Swap
swapon /ee-swapfile &>> $EE_COMMAND_LOG \
|| ee_lib_error "Unable to on Swap, exit status = " $?
@ -24,11 +29,6 @@ function ee_lib_swap()
# Add entry into /etc/fstab
echo "/ee-swapfile none swap sw 0 0" >> /etc/fstab \
|| ee_lib_error "Unable to add entry into /etc/fstab, exit status = " $?
# Change Permission for swapfile
chown root:root /ee-swapfile &&
chmod 0600 /ee-swapfile \
|| ee_lib_error "Unable to change Swapfile permission, exit status = " $?
fi
fi
}

Loading…
Cancel
Save