v1.7.5: Fix update_firmware Step 3c (chmod +x setup_services.sh)

Le check -x echouait car git config core.fileMode=false (defini dans
installation_part1.sh) strippe le bit executable. Resultat: Step 3c
logguait 'not found or not executable, skipping' au lieu de
reellement appeler setup_services.sh.

Fix: chmod +x avant l'execution, comme le fait deja
installation_part2.sh sur le meme script.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
PaulVua
2026-05-12 17:38:40 +02:00
parent 7ad133f446
commit b87b054e2b
3 changed files with 21 additions and 4 deletions

View File

@@ -1 +1 @@
1.7.4 1.7.5

View File

@@ -1,5 +1,18 @@
{ {
"versions": [ "versions": [
{
"version": "1.7.5",
"date": "2026-05-12",
"changes": {
"features": [],
"improvements": [],
"fixes": [
"update_firmware.sh: chmod +x avant d'executer setup_services.sh (le bit executable est strippé par git config core.fileMode=false, donc le check -x echouait systematiquement et Step 3c logguait 'not found or not executable, skipping')"
],
"compatibility": []
},
"notes": "Suite v1.7.4: le self-heal Step 3c n'etait pas reellement actif a cause d'un check -x trop strict. Cette version corrige le probleme en chmod +x avant l'execution, comme le fait deja installation_part2.sh."
},
{ {
"version": "1.7.4", "version": "1.7.4",
"date": "2026-05-12", "date": "2026-05-12",

View File

@@ -112,13 +112,17 @@ fi
# masked, or never installed gets recreated from the canonical source. # masked, or never installed gets recreated from the canonical source.
# Idempotent: rewriting an existing service file with the same content # Idempotent: rewriting an existing service file with the same content
# is a no-op for already-running services. # is a no-op for already-running services.
# Note: git config core.fileMode=false strips the executable bit, so we
# chmod +x explicitly (same pattern as installation_part2.sh).
print_status "" print_status ""
print_status "Step 3c: Reconciling systemd services with setup_services.sh..." print_status "Step 3c: Reconciling systemd services with setup_services.sh..."
if [ -x /var/www/nebuleair_pro_4g/services/setup_services.sh ]; then SETUP_SERVICES=/var/www/nebuleair_pro_4g/services/setup_services.sh
sudo /var/www/nebuleair_pro_4g/services/setup_services.sh if [ -f "$SETUP_SERVICES" ]; then
sudo chmod +x "$SETUP_SERVICES"
sudo "$SETUP_SERVICES"
check_status "Setup services reconciliation" check_status "Setup services reconciliation"
else else
print_status "⚠ setup_services.sh not found or not executable, skipping" print_status "⚠ setup_services.sh not found, skipping"
fi fi
# Step 4: Restart critical services if they exist # Step 4: Restart critical services if they exist