1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zeronet_ynh.git synced 2024-09-03 17:46:12 +02:00
zeronet_ynh/scripts/restore

48 lines
1.5 KiB
Text
Raw Normal View History

2017-03-03 21:26:30 +01:00
#!/usr/bin/env bash
source /usr/share/yunohost/helpers
# TODO: enable with fix of https://github.com/YunoHost/yunohost/pull/246
# source .hfunctions
# TODO: remove with fix of https://github.com/YunoHost/yunohost/pull/246
install_dependencies() {
sudo apt-get install --quiet --yes python-msgpack python-gevent
}
2017-03-03 21:26:30 +01:00
main() {
ynh_abort_if_errors
2017-03-03 21:26:30 +01:00
local app=$YNH_APP_INSTANCE_NAME
local deploy_path=$(ynh_app_setting_get $app deploy_path)
local symlink_to_deploy_path=$(ynh_app_setting_get $app symlink_to_deploy_path)
local nginx_config_file=$( ynh_app_setting_get $app nginx_config_file )
local systemd_service_name=$( ynh_app_setting_get $app systemd_service_name )
local systemd_service_file=$( ynh_app_setting_get $app systemd_service_file )
local user=$( ynh_app_setting_get $app user )
local user_zeronet_dir=$( ynh_app_setting_get $app user_zeronet_dir )
local url=$(ynh_app_setting_get $app url)
install_dependencies
2017-03-03 21:26:30 +01:00
sudo yunohost app checkurl $url -a $app
sudo cp -a "./sources" $deploy_path
sudo ln --symbolic --force $deploy_path $symlink_to_deploy_path
sudo chown $user: -LR $symlink_to_deploy_path
sudo chown $user: -h $symlink_to_deploy_path
2017-03-03 21:26:30 +01:00
sudo rm -rf $user_zeronet_dir
sudo cp -aR "./conf/.zeronet" $user_zeronet_dir
sudo chown -R $user: $user_zeronet_dir
2017-03-03 21:26:30 +01:00
sudo cp -a "./conf/nginx.conf" $nginx_config_file
sudo service nginx reload
sudo cp -a "./conf/${systemd_service_name}" $systemd_service_file
sudo systemctl restart $systemd_service_name
}
main