diff options
Diffstat (limited to 'daemonsbkg/daemonsbkg.install')
-rw-r--r-- | daemonsbkg/daemonsbkg.install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/daemonsbkg/daemonsbkg.install b/daemonsbkg/daemonsbkg.install new file mode 100644 index 0000000..f04f73b --- /dev/null +++ b/daemonsbkg/daemonsbkg.install @@ -0,0 +1,14 @@ +post_install() { + echo "" + echo "NOTE:" + echo "--> Run '/usr/bin/daemonsbkg.sh' whenever you upgrade initscripts." + echo "--> I'll also add a new line to rc.conf." + echo "Running patch now..." + /usr/bin/daemonsbkg.sh +} + +pre_remove() { + echo "Removing the patch..." + patch -R -p0 < /etc/daemonsbkg.patch +} +# vim:set ts=2 sw=2 et: |