summaryrefslogtreecommitdiff
path: root/init.d/swclock.in
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/swclock.in')
-rw-r--r--init.d/swclock.in30
1 files changed, 0 insertions, 30 deletions
diff --git a/init.d/swclock.in b/init.d/swclock.in
deleted file mode 100644
index b74d49a1..00000000
--- a/init.d/swclock.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#!@SBINDIR@/openrc-run
-# 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 @SBINDIR@/openrc-run
- fi
- eend $?
-}
-
-stop()
-{
- ebegin "Saving the shutdown time"
- swclock --save
- eend $?
-}