summaryrefslogtreecommitdiff
path: root/init.d/swclock.in
blob: f10689b1220c10049e299d464e947163a8b3ff38 (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
29
30
#!@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 -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 $?
}