summarylogtreecommitdiffstats
path: root/taskd.install
diff options
context:
space:
mode:
authorAlexei Colin2016-05-27 10:48:44 -0400
committerAlexei Colin2016-05-27 10:48:44 -0400
commit76d7855b1dd49c27aa4a4982450c24334b1c2219 (patch)
treec84e5604698081574f0fe5382214458475a91c18 /taskd.install
parente7f6453698e03692a9ebebdc0bd83c680bff8c35 (diff)
downloadaur-76d7855b1dd49c27aa4a4982450c24334b1c2219.tar.gz
install: do not delete user, don't manipulate service
Diffstat (limited to 'taskd.install')
-rw-r--r--taskd.install16
1 files changed, 0 insertions, 16 deletions
diff --git a/taskd.install b/taskd.install
index 207a12dbda5c..849614a69b16 100644
--- a/taskd.install
+++ b/taskd.install
@@ -8,8 +8,6 @@ pre_install() {
}
post_install() {
- systemctl preset taskd.service
-
echo "Please follow the configuration instructions at
/usr/lib/taskd/taskd.notes to finish setting up Taskserver."
}
@@ -21,17 +19,3 @@ pre_upgrade() {
post_upgrade() {
post_install
}
-
-pre_remove() {
- systemctl --no-reload disable taskd.service
- systemctl stop taskd.service
-}
-
-post_remove() {
- getent passwd taskd &> /dev/null && userdel taskd &> /dev/null
- getent group taskd &> /dev/null && groupdel taskd &> /dev/null
-
- systemctl daemon-reload
-
- echo "User 'taskd' and group 'taskd' have been removed."
-}