diff core/rc/rc.sh @ 566:ddb052f876cd

core/rc: move etc services to rc, closes #1666
author David Demelier <markand@malikania.fr>
date Fri, 05 Jul 2019 20:58:54 +0200
parents
children 75c8521c9b7a
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/rc/rc.sh	Fri Jul 05 20:58:54 2019 +0200
@@ -0,0 +1,34 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=rc
+PKGVERSION=0.1
+PKGREVISION=1
+PKGLICENSE="ISC"
+PKGSUMMARY="vanilla init scripts"
+PKGPROTECT="etc/rc.conf
+            etc/rc.init
+            etc/rc.shutdown
+            etc/rc.start"
+
+build()
+{
+	install -Dm0755 rc.conf $DESTDIR/etc/rc.conf
+	install -Dm0755 rc.init $DESTDIR/etc/rc.init
+	install -Dm0755 rc.shutdown $DESTDIR/etc/rc.shutdown
+	install -Dm0755 rc.start $DESTDIR/etc/rc.start
+}