summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2018-03-20 09:25:57 +0300
committerAlexey Shvetsov <alexxy@gentoo.org>2018-03-20 09:26:25 +0300
commitc80fe4a45d496ee919fbef2e16a7f341b0e9cdfa (patch)
tree256cb1ab1062b4798a881a77040daa2c8a6bad95 /app-emulation/glean/files
parentdev-ruby/semantic_puppet: add 1.0.2 (diff)
downloadgentoo-c80fe4a45d496ee919fbef2e16a7f341b0e9cdfa.tar.gz
gentoo-c80fe4a45d496ee919fbef2e16a7f341b0e9cdfa.tar.bz2
gentoo-c80fe4a45d496ee919fbef2e16a7f341b0e9cdfa.zip
app-emulation/glean: Initial import
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-emulation/glean/files')
-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
+}