1
0
This repository has been archived on 2025-01-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Anderson Luiz Alves 0464e230c1 stock 103961
2017-07-30 16:48:04 -03:00

24 lines
461 B
Bash
Executable File

#!/bin/sh
# Start other services
. /etc/bewan/scripts/globals
. /etc/bewan/lib/base
# Take onchange mutex (used by configd, adsl-up...)
base_enter_critical 'onchange'
# Get config parameters after taking lock
base_call_initd 'setparam'
ARG=start
for script in `find /etc/bewan/rc2.d -follow -type f | sort`; do
. $script
done
base_call_initd 'inittab'
# Release onchange mutex
base_exit_critical 'onchange'
base_log "rc2 complete" notice
rm $RC2RUNNING