aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-16 11:58:56 +0300
committerCem Keylan <cem@ckyln.com>2020-05-16 11:58:56 +0300
commitd05abf56f614274df9cb73d5c8dbe74d09ca779a (patch)
tree73291b49dfd60c01de1438cb5eae8a4fd8490527
parentde36dc29ca74f8c91358652a131a535e47975652 (diff)
downloadinit-d05abf56f614274df9cb73d5c8dbe74d09ca779a.tar.gz
init: remove rc.local file from the repository
-rw-r--r--Makefile2
-rwxr-xr-xrc.local9
2 files changed, 0 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 9f34284..2470f08 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,6 @@ install: bin/shalt
install -Dm644 rc.conf ${DESTDIR}/etc/init/rc.conf
install -Dm644 rc.lib ${DESTDIR}${INITDIR}/rc.lib
install -Dm644 -t ${DESTDIR}/etc/init/ contrib/getty.boot contrib/runit.boot
- install -Dm755 rc.local ${DESTDIR}/etc/init/rc.local
sed 's#INITDIR#${INITDIR}#g' < rc.boot > ${DESTDIR}${INITDIR}/rc.boot
sed 's#INITDIR#${INITDIR}#g' < rc.shutdown > ${DESTDIR}${INITDIR}/rc.shutdown
chmod 755 ${DESTDIR}${INITDIR}/rc.boot ${DESTDIR}${INITDIR}/rc.shutdown
@@ -28,7 +27,6 @@ install: bin/shalt
uninstall:
rm -f ${DESTDIR}${BINDIR}/shalt
rm -f ${DESTDIR}/etc/init/rc.conf
- rm -f ${DESTDIR}/etc/init/rc.local
rm -f ${DESTDIR}/etc/init/getty.boot ${DESTDIR}/etc/init/runit.boot
rm -f ${DESTDIR}${INITDIR}/rc.boot
rm -f ${DESTDIR}${INITDIR}/rc.shutdown
diff --git a/rc.local b/rc.local
deleted file mode 100755
index 1cd0051..0000000
--- a/rc.local
+++ /dev/null
@@ -1,9 +0,0 @@
-#
-# rc.local
-#
-
-# vim:filetype=sh
-
-# rc.local is executed after the main functions
-# of rc.boot so you can add your own scripts and
-# run them from here.