diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-08-21 14:08:32 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-08-21 14:08:32 -0300 |
commit | ecf103cd9b27cbb6ded954018c3b042df5f06f29 (patch) | |
tree | a15363fad9df56e38560a9c587817c423894d957 /pcr/cjdns-git/cjdns-git.install | |
parent | c184b4c5cdadee8a77181979986f1f84173bb00d (diff) | |
parent | 9947b58ec4c681e62db65ccd8a8b0aaee581437d (diff) |
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/cjdns-git/cjdns-git.install')
-rw-r--r-- | pcr/cjdns-git/cjdns-git.install | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pcr/cjdns-git/cjdns-git.install b/pcr/cjdns-git/cjdns-git.install new file mode 100644 index 000000000..5e9e1a64c --- /dev/null +++ b/pcr/cjdns-git/cjdns-git.install @@ -0,0 +1,21 @@ +post_install() { + if [ $(ps -A | ps -A | grep -cE "systemd$") = 1 ]; then + systemctl --system daemon-reload + fi + + if [ -z $(type -P python2) ]; then + echo "You don't currently have python2 installed. It isn't required to use cjdns, but some scripts have been included in the package that won't function without" + fi + + echo "By default, the cjdns configuration file is expected to be located @ /etc/cjdroute.conf" +} + +post_upgrade() { + if [ $(ps -A | ps -A | grep -cE "systemd$") = 1 ]; then + systemctl --system daemon-reload + fi + + if [ $(grep -c cjdns /etc/passwd) = 1 ]; then + echo "The user 'cjdns' has been detected on your system but is no longer required by this package; if it was installed by a previous version of this package, it can now be safely deleted." + fi +} |