9 lines
110 B
Bash
9 lines
110 B
Bash
#!/bin/sh
|
|
|
|
#import functions
|
|
. /etc/rc.d/functions
|
|
|
|
if [ -x /etc/rc.d/rc.local ]; then
|
|
/etc/rc.d/rc.local
|
|
fi
|