Files
entropy/services/entropy_client
2009-12-21 20:30:24 +01:00

21 lines
342 B
Plaintext
Executable File

#!/sbin/runscript
# Copyright 2009 Fabio Erculiani
# Distributed under the terms of the GNU General Public License v2
CLIENT_LOCK="/var/lib/entropy/entropy.lock"
depend() {
need localmount
# not yet
# use net
}
start() {
ebegin "Cleaning Entropy lock files"
# remove client lock
rm -f ${CLIENT_LOCK}
eend 0
}