2009-10-13 08:03:45 +01:00
|
|
|
#!@PREFIX@/sbin/runscript
|
|
|
|
# Copyright (c) 2009 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
|
|
|
|
description="Sets the local clock to the mtime of a given file."
|
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
before *
|
2009-10-13 21:06:35 +01:00
|
|
|
provide clock
|
2009-11-04 19:21:24 +00:00
|
|
|
keyword -openvz -prefix -uml -vserver -xenu -lxc
|
2009-10-13 08:03:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# swclock is an OpenRC built in
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
ebegin "Setting the local clock based on last shutdown time"
|
2009-11-13 21:31:09 +00:00
|
|
|
swclock --warn
|
2009-10-13 08:03:45 +01:00
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop()
|
|
|
|
{
|
|
|
|
ebegin "Saving the shutdown time"
|
|
|
|
swclock --save
|
|
|
|
eend $?
|
|
|
|
}
|