Add quota to new bakers

This commit is contained in:
Case Duckworth 2022-02-10 01:25:04 +00:00
parent 0a54a979c5
commit ffcc6fada3
1 changed files with 3 additions and 0 deletions

View File

@ -91,6 +91,9 @@ bakeradd()
ln -s /var/gemini/bakers/$user /home/$user/public_gemini
} && ok
log "Setting disk quota for $user"
setquota -u $user 1000M 10000M 0 0 / && ok
echo "$user added."
}