Skip to content

Commit

Permalink
Fix leftovers introduced in 59825e0, e26c61f, c904269
Browse files Browse the repository at this point in the history
  • Loading branch information
xZero707 committed Oct 28, 2024
1 parent 1bdde3f commit 3bd2886
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rootfs/etc/s6-overlay/s6-rc.d/init-unitd-configure/run
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/command/with-contenv bash
# shellcheck shell=bash

# unitd-configure main
# init-unitd-configure main
main() {
# This will prepend service name to all output from here
exec > >(while read line; do echo "[unitd-configure] ${line}"; done) 2>&1
exec > >(while read line; do echo "[init-unitd-configure] ${line}"; done) 2>&1

local unitConfigurationFile="${UNIT_CONFIGURATION_FILE:?}"
local unitSocket="${UNIT_SOCKET:?}"
Expand Down
2 changes: 1 addition & 1 deletion rootfs/etc/s6-overlay/s6-rc.d/init-unitd-configure/up
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/etc/s6-overlay/s6-rc.d/unitd-configure/run
/etc/s6-overlay/s6-rc.d/init-unitd-configure/run
2 changes: 1 addition & 1 deletion rootfs/etc/s6-overlay/s6-rc.d/svc-unitd/run
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# svc-unitd main
main() {
# This will prepend service name to all output from here
exec > >(while read line; do echo "[unitd] ${line}"; done) 2>&1
exec > >(while read line; do echo "[svc-unitd] ${line}"; done) 2>&1

local unitSocket="${UNIT_SOCKET:?}"

Expand Down
2 changes: 1 addition & 1 deletion rootfs/etc/s6-overlay/s6-rc.d/svc-unitd/up
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/etc/s6-overlay/s6-rc.d/unitd/run
/etc/s6-overlay/s6-rc.d/svc-unitd/run

0 comments on commit 3bd2886

Please sign in to comment.