summaryrefslogtreecommitdiffstats
path: root/src/initramfs/scripts/init
diff options
context:
space:
mode:
Diffstat (limited to 'src/initramfs/scripts/init')
-rwxr-xr-xsrc/initramfs/scripts/init17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/initramfs/scripts/init b/src/initramfs/scripts/init
index d1d7945b..59cfea8a 100755
--- a/src/initramfs/scripts/init
+++ b/src/initramfs/scripts/init
@@ -1039,12 +1039,21 @@ runinithook '85-have-initial-boot'
# post init for some distro specific stuff to run
postinit
# general postinit.local configurable by the admin via openslx/config/<system>
-[ -f /initramfs/postinit.local ] && {
- [ $DEBUGLEVEL -gt 0 ] && \
- echo -n "Running script /bin/postinit.local ... "
+if [ -f /initramfs/postinit.local ]
+ then
+ [ $DEBUGLEVEL -gt 0 ] \
+ && echo -n "Running script /initramfs/postinit.local ... "
chmod u+x /initramfs/postinit.local
/initramfs/postinit.local
- [ $DEBUGLEVEL -gt 0 ] && echo "ok"; }
+ [ $DEBUGLEVEL -gt 0 ] && echo "ok"
+elif [ -f /bin/postinit.local ]
+ then
+ [ $DEBUGLEVEL -gt 0 ] \
+ && echo -n "Running script /bin/postinit.local ... "
+ chmod u+x /bin/postinit.local
+ /bin/postinit.local
+ [ $DEBUGLEVEL -gt 0 ] && echo "ok"
+fi
# start a debug shell in higher debug levels
[ $DEBUGLEVEL -gt 2 -a $DEBUGLEVEL != 8 ] \