summarylogtreecommitdiffstats
path: root/warsaw.install
diff options
context:
space:
mode:
authorManoel Vilela2019-03-06 11:10:03 -0300
committerManoel Vilela2019-03-06 11:10:45 -0300
commit62a6a6aac0eca9e512fd2fddfa12a709dc150871 (patch)
tree11302df7c9be2c6373b1851ddb3836fc8e24ecee /warsaw.install
parentaffd6de1e33eea9c7915d0596fe96f71963ecf39 (diff)
downloadaur-warsaw-openrc.tar.gz
Rename it to warsaw-openrc
Diffstat (limited to 'warsaw.install')
-rw-r--r--warsaw.install30
1 files changed, 0 insertions, 30 deletions
diff --git a/warsaw.install b/warsaw.install
deleted file mode 100644
index 1ec956883159..000000000000
--- a/warsaw.install
+++ /dev/null
@@ -1,30 +0,0 @@
-post_install() {
- echo "To use Warsaw, start its service using:"
- echo "systemd: # systemctl start warsaw"
- echo "openrc: # rc-service warsaw stop"
-
- for i in ld-linux-x86-64.so.2 libc.so.6 libdl.so.2 libpthread.so.0; do
- sudo chattr -V +i /usr/local/lib/warsaw/$i
- done
-
-}
-
-pre_remove() {
- if (pacman -Q openrc &> /dev/null); then
- rc-service warsaw stop
- else
- systemctl stop warsaw
- fi
-
- for i in ld-linux-x86-64.so.2 libc.so.6 libdl.so.2 libpthread.so.0; do
- sudo chattr -V -i /usr/local/lib/warsaw/$i
- done
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_upgrade() {
- pre_remove
-}