You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
273 B

#!/bin/bash
cd $(dirname $0)
rm -f /etc/rc.d/rc.local
cp ./init.d/rc.d/rc.local /etc/rc.d/
chmod +x /etc/rc.d/rc.local
for fileName in $(ls ./init.d)
do
if [ ! -d $(pwd)/init.d/$fileName ]; then
echo sh $(pwd)/init.d/$fileName>>/etc/rc.d/rc.local
fi
done