change config file

This commit is contained in:
Aliberk Sandıkçı 2024-01-06 13:46:24 +03:00
parent 69f48342f1
commit 034165a7e4
Signed by: asandikci
GPG Key ID: 25C67A03B5666BC1
2 changed files with 6 additions and 6 deletions

View File

@ -145,13 +145,13 @@ ynh_script_progression --message="Adding a configuration file..." --weight=1
###
### Check the documentation of `ynh_add_config` for more info.
ynh_add_config --template="some_config_file" --destination="$install_dir/some_config_file"
ynh_add_config --template="../conf/config.php" --destination="$install_dir/config.php"
# FIXME: this should be handled by the core in the future
# You may need to use chmod 600 instead of 400,
# for example if the app is expected to be able to modify its own config
chmod 600 "$install_dir/some_config_file"
chown $app:$app "$install_dir/some_config_file"
chmod 400 "$install_dir/config.php"
chown $app:$app "$install_dir/config.php"
### For more complex cases where you want to replace stuff using regexes,
### you shoud rely on ynh_replace_string (which is basically a wrapper for sed)

View File

@ -112,13 +112,13 @@ ynh_script_progression --message="Updating a configuration file..." --weight=1
### The file will automatically be backed-up if it's found to be manually modified (because
### ynh_add_config keeps track of the file's checksum)
ynh_add_config --template="some_config_file" --destination="$install_dir/some_config_file"
ynh_add_config --template="../conf/config.php" --destination="$install_dir/config.php"
# FIXME: this should be handled by the core in the future
# You may need to use chmod 600 instead of 400,
# for example if the app is expected to be able to modify its own config
chmod 400 "$install_dir/some_config_file"
chown $app:$app "$install_dir/some_config_file"
chmod 400 "$install_dir/config.php"
chown $app:$app "$install_dir/config.php"
### For more complex cases where you want to replace stuff using regexes,
### you shoud rely on ynh_replace_string (which is basically a wrapper for sed)