blob: 183a384faa4d523af6506bc6821288884d7adfc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
### BEGIN INIT INFO
# Provides: finish.sh
# Required-Start: $remote_fs rmnologin
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: Finish system start
# Description:
### END INIT INFO
if ! test -e /etc/.configured; then
> /etc/.configured
fi
|