1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cjdns_ynh.git synced 2024-09-03 18:16:29 +02:00

Update install

This commit is contained in:
Éric Gaspar 2024-05-16 10:28:52 +02:00
parent 27ed81da6f
commit e5d58277df

View file

@ -23,12 +23,10 @@ chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir" chown -R $app:www-data "$install_dir"
chmod +x "$install_dir/cjdroute" chmod +x "$install_dir/cjdroute"
# mv $install_dir/cjdroute $data_dir/cjdroute
#================================================= #=================================================
# CONFIGURING CJDNS # CONFIGURING CJDNS
#================================================= #=================================================
ynh_script_progression --message="Configuring cjdns..." --weight=1 ynh_script_progression --message="Configuring $app..." --weight=1
$install_dir/cjdroute --genconf | $install_dir/cjdroute --cleanconf > $install_dir/cjdroute.conf $install_dir/cjdroute --genconf | $install_dir/cjdroute --cleanconf > $install_dir/cjdroute.conf
@ -38,14 +36,14 @@ jq '.noBackground = 1' $install_dir/cjdroute.conf > $install_dir/cjdroute.conf.t
#================================================= #=================================================
# UPGRADE PEERS # UPGRADE PEERS
#================================================= #=================================================
ynh_script_progression --message="Getting cjdns peers..." --weight=1 ynh_script_progression --message="Getting $app peers..." --weight=1
# Fetch the JSON data # Fetch the JSON data
json=$(curl -s -A "ynh" https://vpn.anode.co/api/0.4/vpn/cjdns/peeringlines/) json=$(curl -s -A "ynh" https://vpn.anode.co/api/0.4/vpn/cjdns/peeringlines/)
echo "Got peering lines" echo "Got peering lines"
length=$(echo $json | jq '. | length') length=$(echo $json | jq '. | length')
ynh_script_progression --message="Adding $length cjdns peers..." --weight=1 ynh_script_progression --message="Adding $length $app peers..." --weight=1
for (( i=0; i<$length; i++ )) for (( i=0; i<$length; i++ ))
do do
# Parse the JSON data # Parse the JSON data
@ -74,7 +72,7 @@ ynh_app_setting_set --app=$app --key=cjdns_ipv6 --value=$cjdns_ipv6
#================================================= #=================================================
# SETUP SYSTEMD # SETUP SYSTEMD
#================================================= #=================================================
ynh_script_progression --message="Configuring cjdns systemd service..." ynh_script_progression --message="Configuring systemd service..."
# Create a dedicated systemd config # Create a dedicated systemd config
ynh_add_systemd_config ynh_add_systemd_config
@ -85,7 +83,7 @@ ynh_use_logrotate
#================================================= #=================================================
# INTEGRATE SERVICE IN YUNOHOST # INTEGRATE SERVICE IN YUNOHOST
#================================================= #=================================================
ynh_script_progression --message="Integrating cjdns service in YunoHost..." ynh_script_progression --message="Integrating service in YunoHost..."
yunohost service add $app --description="Encrypted IPv6 network" --log="/var/log/$app/$app.log" yunohost service add $app --description="Encrypted IPv6 network" --log="/var/log/$app/$app.log"
@ -99,14 +97,6 @@ ynh_script_progression --message="Launching cjdns service..." --weight=1
# Start a systemd service # Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
#=================================================
# MAKE WORDPRESS AVAILABLE ON CJDNS
#=================================================
if [[ -z $(yunohost app list | grep -q 'id: wordpress') ]]; then
yunohost tools shell -c "from yunohost.permission import permission_url; permission_url('wordpress.main', add_url=['re:^.fc.*'])"
fi
#================================================= #=================================================
# END OF SCRIPT # END OF SCRIPT
#================================================= #=================================================