aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d/Makefile2
-rw-r--r--init.d/osclock.in12
2 files changed, 13 insertions, 1 deletions
diff --git a/init.d/Makefile b/init.d/Makefile
index c2c3ea1f..85925b15 100644
--- a/init.d/Makefile
+++ b/init.d/Makefile
@@ -2,7 +2,7 @@ include ../mk/net.mk
DIR= ${INITDIR}
SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in loopback.in \
- netmount.in root.in savecache.in swap.in swapfiles.in \
+ netmount.in osclock.in root.in savecache.in swap.in swapfiles.in \
tmpfiles.setup.in swclock.in sysctl.in urandom.in ${SRCS-${OS}}
BIN= ${OBJS}
diff --git a/init.d/osclock.in b/init.d/osclock.in
new file mode 100644
index 00000000..ce892d20
--- /dev/null
+++ b/init.d/osclock.in
@@ -0,0 +1,12 @@
+#!@SBINDIR@/openrc-run
+# Copyright (c) 2014 Ralph Sennhauser <sera@igentoo.org>
+# Released under the 2-clause BSD license.
+
+# Can be used on OSs that take care of the clock.
+
+description="Provides clock"
+
+depend()
+{
+ provide clock
+}