summaryrefslogtreecommitdiff
path: root/app-emulation/glean/files/glean.initd
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/glean/files/glean.initd')
-rw-r--r--app-emulation/glean/files/glean.initd15
1 files changed, 15 insertions, 0 deletions
diff --git a/app-emulation/glean/files/glean.initd b/app-emulation/glean/files/glean.initd
new file mode 100644
index 000000000000..16f7805957f2
--- /dev/null
+++ b/app-emulation/glean/files/glean.initd
@@ -0,0 +1,15 @@
+#!/sbin/openrc-run
+# Copyright 1999-2018 Gentoo Foundation
+
+description="Simple program to write static config from config-drive"
+
+depend() {
+ need root localmount
+ before net
+}
+
+start() {
+ ebegin "Starting Glean"
+ /usr/bin/glean.sh
+ eend
+}