1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ergo_ynh.git synced 2024-09-03 18:26:31 +02:00

Merge pull request #14 from YunoHost-Apps/ssl-certs

add the user to the 'ssl-cert' group
This commit is contained in:
OniriCorpe 2024-01-28 05:58:37 +01:00 committed by GitHub
commit a8de88049a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 24 additions and 0 deletions

View file

@ -97,6 +97,14 @@ ynh_script_progression --message="Configuring log rotation..." --weight=2
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# SPECIFIC SETUP
#=================================================
# adding the ergo dedicated user to the 'ssl-cert' group
# to permit the use of the Let's Encrypt certs
usermod -a -G ssl-cert "$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================

View file

@ -56,6 +56,14 @@ systemctl enable $app.service --quiet
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# SPECIFIC SETUP
#=================================================
# adding the ergo dedicated user to the 'ssl-cert' group
# to permit the use of the Let's Encrypt certs
usermod -a -G ssl-cert "$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================

View file

@ -54,6 +54,14 @@ ynh_add_systemd_config
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# SPECIFIC SETUP
#=================================================
# adding the ergo dedicated user to the 'ssl-cert' group
# to permit the use of the Let's Encrypt certs
usermod -a -G ssl-cert "$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================