mirror of
https://github.com/YunoHost-Apps/zeronet_ynh.git
synced 2024-09-03 17:46:12 +02:00
47 lines
1.5 KiB
Bash
Executable file
47 lines
1.5 KiB
Bash
Executable file
#!/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
|
|
}
|
|
|
|
main() {
|
|
ynh_abort_if_errors
|
|
|
|
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
|
|
|
|
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
|
|
|
|
sudo rm -rf $user_zeronet_dir
|
|
sudo cp -aR "./conf/.zeronet" $user_zeronet_dir
|
|
sudo chown -R $user: $user_zeronet_dir
|
|
|
|
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
|