2009-10-13 12:33:45 +05:30
|
|
|
#!@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-14 01:36:35 +05:30
|
|
|
provide clock
|
2009-11-05 00:51:24 +05:30
|
|
|
keyword -openvz -prefix -uml -vserver -xenu -lxc
|
2009-10-13 12:33:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
# swclock is an OpenRC built in
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
ebegin "Setting the local clock based on last shutdown time"
|
2009-11-14 03:01:09 +05:30
|
|
|
swclock --warn
|
2009-10-13 12:33:45 +05:30
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop()
|
|
|
|
{
|
|
|
|
ebegin "Saving the shutdown time"
|
|
|
|
swclock --save
|
|
|
|
eend $?
|
|
|
|
}
|