kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 8112ee33247ef78abdad5a4f288c2453676825e7
parent 8bb4bb6c733e66f3f0370228f4d0cee0e08fb404
Author: St John Karp <contact@stjo.hn>
Date:   Tue, 14 Jun 2022 11:12:18 -0400

svc: Make all available scripts executable

This needs to include the empty scripts even though they are never
actually run. Otherwise svc will throw errors upon attempting to
perform operations on them individually.

Diffstat:
Mcore/svc/build | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/core/svc/build b/core/svc/build @@ -22,6 +22,7 @@ touch "$1/usr/bin/svc.d/avail/pcscd" touch "$1/usr/bin/svc.d/avail/sdhcp" touch "$1/usr/bin/svc.d/avail/seatd" touch "$1/usr/bin/svc.d/avail/wpa_supplicant" +chmod +x "$1/usr/bin/svc.d/avail/*" # Install the license install -m 755 -D LICENSE "$1/usr/share/LICENSES/svc.license"