diff --git a/add_new_user.sh b/add_new_user.sh index ecbc960..7baa976 100755 --- a/add_new_user.sh +++ b/add_new_user.sh @@ -50,6 +50,9 @@ if ! id -u "${user_name}" > /dev/null 2>&1 ; then elif [[ "$user_name" = 'back' ]]; then user_uid=1060 user_gid=1060 + elif [[ "$user_name" = 'cryptpad' ]]; then + user_uid=1033 + user_gid=1033 else declare -i _id=$(expr $min_uid - 1)