blob: 76a6fda65a9e5b5d26a2fc54eea717ada99feb76 (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
post_install() {
echo -n "adding http system group... "
groupadd http
echo "done."
chgrp -R http /srv/http/osticket
post_upgrade
cat << 'EOM'
==> NOTES:
-> In order to use osticket, you have to be in the 'http' group
-> Setup Apache, MySQL and PHP, following 'http://wiki.archlinux.org/index.php/LAMP'
-> To finish the installation process, navigate to 'http://localhost/osticket'
with your web browser.
==> Need help installing osTicket?
-> Read Documentation at 'https://docs.osticket.com/en/latest/'
EOM
}
post_upgrade() {
true
}
pre_remove() {
true
}
post_remove() {
true
}
op=$1
shift
$op $*
|