diff --git a/src/lib/ee_lib_swap.sh b/src/lib/ee_lib_swap.sh index f375afac..1cb20de7 100644 --- a/src/lib/ee_lib_swap.sh +++ b/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 }