Parcourir la source

fix template paths

HgO il y a 7 mois
Parent
commit
8015e9a8da
3 fichiers modifiés avec 7 ajouts et 6 suppressions
  1. 3 3
      scripts/install
  2. 1 0
      scripts/restore
  3. 3 3
      scripts/upgrade

+ 3 - 3
scripts/install

@@ -113,9 +113,9 @@ touch /etc/hostapd/$app/allowed.csv
 ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
 chmod 0755 "/usr/local/bin/$service_name"
 
-ynh_add_config --template="../conf/captiveportal_fakedns" --destination="/usr/local/bin/captiveportal_fakedns"
+ynh_add_config --template="../sources/captiveportal_fakedns" --destination="/usr/local/bin/captiveportal_fakedns"
 chmod 0755 "/usr/local/bin/captiveportal_fakedns"
-ynh_add_config --template="../conf/captiveportal_allow" --destination="/usr/local/bin/captiveportal_allow"
+ynh_add_config --template="../sources/captiveportal_allow" --destination="/usr/local/bin/captiveportal_allow"
 chmod 0755 "/usr/local/bin/captiveportal_allow"
 
 # Copy openvpn scripts
@@ -154,7 +154,7 @@ ynh_add_systemd_config --service=$service_name
 ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
 yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
 
-ynh_add_systemd_config --service="captiveportal_fakedns" --template="captiveportal_fakedns"
+ynh_add_systemd_config --service="captiveportal_fakedns" --template="../conf/captiveportal_fakedns.service"
 yunohost service add captiveportal_fakedns --description "Captive portal dns service" --test_status "systemctl is-active captiveportal_fakedns"
 
 #=================================================

+ 1 - 0
scripts/restore

@@ -43,6 +43,7 @@ ynh_script_progression --message="Restoring configurations ..."
 ynh_restore
 
 yunohost service add "$service_name" --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
+yunohost service add captiveportal_fakedns --description "Captive portal dns service" --test_status "systemctl is-active captiveportal_fakedns"
 
 #=================================================
 # START SYSTEMD SERVICE

+ 3 - 3
scripts/upgrade

@@ -181,9 +181,9 @@ fi
 ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
 chmod 0755 "/usr/local/bin/$service_name"
 
-ynh_add_config --template="../conf/captiveportal_fakedns" --destination="/usr/local/bin/captiveportal_fakedns"
+ynh_add_config --template="../sources/captiveportal_fakedns" --destination="/usr/local/bin/captiveportal_fakedns"
 chmod 0755 "/usr/local/bin/captiveportal_fakedns"
-ynh_add_config --template="../conf/captiveportal_allow" --destination="/usr/local/bin/captiveportal_allow"
+ynh_add_config --template="../sources/captiveportal_allow" --destination="/usr/local/bin/captiveportal_allow"
 chmod 0755 "/usr/local/bin/captiveportal_allow"
 
 # Copy openvpn scripts
@@ -207,7 +207,7 @@ ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_host
 
 yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
 
-ynh_add_systemd_config --service="captiveportal_fakedns" --template="captiveportal_fakedns"
+ynh_add_systemd_config --service="captiveportal_fakedns" --template="../conf/captiveportal_fakedns.service"
 yunohost service add captiveportal_fakedns --description "Captive portal dns service" --test_status "systemctl is-active captiveportal_fakedns"
 
 #=================================================