mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 12:43:03 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5003 311d38ba-8fff-0310-9ca6-ca027cbcb966
15 lines
306 B
Bash
Executable File
15 lines
306 B
Bash
Executable File
#!/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
|