diff options
-rwxr-xr-x | user-init | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -44,6 +44,9 @@ server_root="server" server_conf="/etc/security/pam_mount.conf" server_userconf=".winpassword" +QUOTASOFT="0" +QUOTAHARD="0" + ### No servicable parts below this line! ### if [ -e /etc/adduser.conf ]; then @@ -116,7 +119,7 @@ for user in $USERS; do done for quotahome in $QUOTAHOMES; do if [ -n "$NEW_QUOTA" ]; then - setquota "$user" "$quotasoft" "$quotahard" 0 0 "$quotahome" + setquota "$user" "$quotasoft" "$quotahard" 0 0 "$quotahome" else setquota "$user" "$quotahome" "$quotasoft" "$quotahard" 0 0 fi |