summaryrefslogtreecommitdiff
path: root/scripts/fixed-multi-user.sh
blob: bfdae4b24dd90a0d6b29d54cf330a109c9f00bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# Fixed Multi-User: executes fixed multiuser scripts
#
PATH=/bin:/usr/bin:/sbin:/usr/sbin

SCRIPT_DIR=/usr/share/fixed_multiuser/scripts

if [ ! -d ${SCRIPT_DIR} ]
then
	exit 0
fi

SCRIPTS=`/bin/ls ${SCRIPT_DIR}`

for SCRIPT in ${SCRIPTS}; do
	echo "Run ${SCRIPT}..."
	/bin/sh ${SCRIPT_DIR}/${SCRIPT}
done