This commit is contained in:
Azlux 2020-02-05 14:47:31 +01:00
parent b99c49fb8e
commit 853ae88d3f
4 changed files with 21 additions and 5 deletions

10
debian/postinst vendored
View File

@ -1,6 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
systemctl daemon-reload
systemctl enable log2ram
echo "##### Reboot to activate log2ram #####"
echo "##### edit /etc/log2ram.conf to configure options ####"
if [ "$1" == "configure" ]; then
echo "##### Reboot to activate log2ram #####"
echo "##### edit /etc/log2ram.conf to configure options ####"
fi
exit 0

3
debian/preinst vendored
View File

@ -1,5 +1,6 @@
#!/bin/bash
set -euo pipefail
systemctl -q is-active log2ram && systemctl stop log2ram
rm -rf /var/hdd.log
exit 0

12
debian/prerm vendored
View File

@ -1,2 +1,12 @@
#!/usr/bin/env bash
systemctl stop log2ram.service
case "$1" in
upgrade)
[ -d /run/systemd/system/ ] && systemctl stop log2ram
exit 0
;;
*)
[ -d /run/systemd/system/ ] && systemctl stop log2ram
[ -d /run/systemd/system/ ] && systemctl disable log2ram
exit 0
;;
esac

View File

@ -17,4 +17,3 @@ RemainAfterExit=yes
[Install]
WantedBy=sysinit.target
RequiredBy=systemd-journald.service