Remove wrong exit in user create script

This commit is contained in:
Clemens Schwaighofer
2022-11-04 10:35:58 +09:00
parent 5db69276db
commit 54f4d69da6

View File

@@ -77,7 +77,6 @@ if [ ! -f "${root_folder}${input_file}" ]; then
echo "Missing ${root_folder}${input_file}";
exit;
fi;
exit;
# make sure my own folder is owned by root and 600 (except for testing)
if [ $(stat -c %a .) != "600" ]; then
echo "!!!! RECOMMENDED TO HAVE BASE FOLDER SET TO '600' AND USER 'root' !!!!"