blob: 4308274ce59ee52e3e8a77fbc71caa406073e311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install() {
getent group tomcat >/dev/null 2>&1 || groupadd -g 66 tomcat
getent passwd tomcat >/dev/null 2>&1 || useradd -u 66 -g tomcat -d /opt/tomcat -s /bin/false tomcat
if [ -f lib/modules/`uname -r`/kernel/security/capability.ko ]; then
echo ">>> It appears that your current kernel has linux security"
echo ">>> capabilities built as a module. Tomcat requires this"
echo ">>> functionality to operate."
echo ">>>"
echo ">>> To activate the module, please load it now (modprobe capability)."
echo ">>> Also, you should add it to your MODULES array in rc.conf, so"
echo ">>> it will be activated automatically at boot-up."
fi
}
post_upgrade() {
post_install $1
}
pre_remove() {
if getent passwd tomcat >/dev/null 2>&1; then
userdel tomcat
fi
if getent group tomcat >/dev/null 2>&1; then
groupdel tomcat
fi
}
|