apache, nginx: fix service reload on Debian

For some unfathomable reason /sbin is not in PATH when running cronjobs.
It shouldn’t hurt on Alpine.
This commit is contained in:
Timotej Lazar 2025-08-01 15:09:35 +02:00
parent 4f9b6a2c53
commit 604ce177e6
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
#!/bin/sh
service apache reload
/sbin/service apache reload

View file

@ -1,3 +1,3 @@
#!/bin/sh
service nginx reload
/sbin/service nginx reload