Browse Source

Change user group

pull/16/head
Maniack Crudelis 9 years ago
committed by GitHub
parent
commit
0a56de70a9
  1. 4
      scripts/upgrade

4
scripts/upgrade

@ -108,6 +108,10 @@ ynh_system_user_exists "$user" || \
# Add the password to this user # Add the password to this user
chpasswd <<< "${user}:${password}" chpasswd <<< "${user}:${password}"
# Change the user group for previous my_webapp install script
groupadd -f "$user"
usermod -g "$user" "$user"
#================================================= #=================================================
# PHP-FPM CONFIGURATION # PHP-FPM CONFIGURATION
#================================================= #=================================================

Loading…
Cancel
Save