1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/archivist_ynh.git synced 2024-09-03 18:15:55 +02:00

create archivist user + debug

This commit is contained in:
lapineige 2024-01-14 11:51:00 +01:00 committed by GitHub
parent c9a5854ad5
commit 02a76467af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,6 +79,8 @@ ynh_install_app_dependencies $pkg_dependencies
#================================================= #=================================================
ynh_script_progression --message="Setting up source files..." --weight=3 ynh_script_progression --message="Setting up source files..." --weight=3
ynh_system_user_create --username=$app --groups="admin"
ynh_app_setting_set --app=$app --key=final_path --value=$final_path ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src # Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" ynh_setup_source --dest_dir="$final_path"
@ -156,11 +158,11 @@ ynh_store_file_checksum --file="/etc/cron.d/$app"
#================================================= #=================================================
# Set permissions to app files # Set permissions to app files
#chown -R $app: $final_path chown -R $app: $final_path
## Debug ## Debug
ynh_exec_warn ls -l $final_path ynh_exec_warn ls -l $final_path
#ynh_system_user_exists --username=$app ynh_system_user_exists --username=$app
chmod -R 777 $final_path #chmod -R 777 $final_path
ynh_exec_warn ls -l $final_path ynh_exec_warn ls -l $final_path
#================================================= #=================================================