3688c85163
If $RC_SVCDIR/shutdowntime does not exist, we need a default reference file. It is safe to use @PREFIX@/sbin/runscript for this purpose. Reported-By: Robin H. Johnson <robbat2@gentoo.org> X-Gentoo-Bug: 376249 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=376249
31 lines
542 B
Plaintext
31 lines
542 B
Plaintext
#!@PREFIX@/sbin/runscript
|
|
# Copyright (c) 2009 Roy Marples <roy@marples.name>
|
|
# Released under the 2-clause BSD license.
|
|
|
|
description="Sets the local clock to the mtime of a given file."
|
|
|
|
depend()
|
|
{
|
|
before *
|
|
provide clock
|
|
keyword -openvz -prefix -uml -vserver -xenu -lxc
|
|
}
|
|
|
|
# swclock is an OpenRC built in
|
|
|
|
start()
|
|
{
|
|
ebegin "Setting the local clock based on last shutdown time"
|
|
if ! swclock 2> /dev/null; then
|
|
swclock --warn @PREFIX@/sbin/runscript
|
|
fi
|
|
eend $?
|
|
}
|
|
|
|
stop()
|
|
{
|
|
ebegin "Saving the shutdown time"
|
|
swclock --save
|
|
eend $?
|
|
}
|