log2ram/debian/postinst

13 lines
287 B
Plaintext
Raw Normal View History

2019-12-19 16:51:27 +01:00
#!/usr/bin/env bash
set -euo pipefail
2020-02-05 14:47:31 +01:00
systemctl daemon-reload
systemctl enable log2ram.service log2ram-daily.timer
2020-02-05 14:47:31 +01:00
if [ "$1" == "configure" ]; then
echo "##### Reboot to activate log2ram #####"
echo "##### edit /etc/log2ram.conf to configure options ####"
fi
exit 0