Skip to content

Commit

Permalink
Merge branch 'fix_s6' into development
Browse files Browse the repository at this point in the history
* fix_s6:
  Add check for usr-merge (Closes hoellen#100)
  • Loading branch information
waja committed Dec 13, 2024
2 parents 07eaa42 + 67a4496 commit 8431094
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions rootfs/usr/local/bin/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,9 @@ else
occ upgrade
fi

# Run processes
exec /bin/s6-svscan /etc/s6.d
# Run processes and check for usr-merge
if [ -x /usr/bin/s6-svscan ]; then
exec /usr/bin/s6-svscan /etc/s6.d
else
exec /bin/s6-svscan /etc/s6.d
fi

0 comments on commit 8431094

Please sign in to comment.