aboutsummaryrefslogtreecommitdiff
path: root/devel/jenkins/files
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2013-10-05 11:18:55 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2013-10-05 11:18:55 +0000
commite7f149e7cd104240d8c4cf1ce66f624db6fa6349 (patch)
tree801fce6afa9814058af0b85e5b1ee7006866d399 /devel/jenkins/files
parent083aa59fe5e8f0ad1dc50ea58578313d360f91d6 (diff)
downloadports-e7f149e7cd104240d8c4cf1ce66f624db6fa6349.tar.gz
ports-e7f149e7cd104240d8c4cf1ce66f624db6fa6349.zip
- Update to 1.533
- Support stage properly Inspired by: bdrewery
Notes
Notes: svn path=/head/; revision=329439
Diffstat (limited to 'devel/jenkins/files')
-rw-r--r--devel/jenkins/files/pkg-deinstall.in38
1 files changed, 38 insertions, 0 deletions
diff --git a/devel/jenkins/files/pkg-deinstall.in b/devel/jenkins/files/pkg-deinstall.in
new file mode 100644
index 000000000000..96d7d8b15513
--- /dev/null
+++ b/devel/jenkins/files/pkg-deinstall.in
@@ -0,0 +1,38 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+PATH=/bin:/usr/bin:/usr/sbin
+
+case $2 in
+DEINSTALL)
+ # try to cleanup %%JENKINS_HOME%%
+ rmdir %%JENKINS_HOME%% 2>/dev/null
+ ;;
+POST-DEINSTALL)
+ echo "===> post-deinstallation information for $1:"
+ echo ""
+ echo " Note:"
+ echo " jenkins related user accounts and groups were not removed."
+ echo ""
+ echo " To remove the '%%JENKINS_USER%%' user and the '%%JENKINS_GROUP%%' group which were"
+ echo " created by a default installation of this package, run"
+ echo ""
+ echo " pw userdel %%JENKINS_USER%%"
+ echo " pw groupdel %%JENKINS_GROUP%%"
+ if [ -d %%JENKINS_HOME%% ] ; then
+ echo ""
+ echo " In order to ease updates, the job directories, plugins"
+ echo " and all configuration files were preserved."
+ echo ""
+ echo " Please remove %%JENKINS_HOME%% manually if you do not want to use"
+ echo " jenkins any longer."
+ fi
+ echo ""
+ ;;
+*)
+ exit 64
+ ;;
+esac
+exit 0