summaryrefslogtreecommitdiff
path: root/init.d/swclock.in
blob: 3357fc76bcd6576d78d798772a5a8d2cec68a998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!@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 *
	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"
	swclock
	eend $?
}

stop()
{
	ebegin "Saving the shutdown time"
	swclock --save
	eend $?
}