blob: 5799254e9b2669304cf47f521f44b699098b3ecb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# arg 1: the new package version
post_install() {
cat <<EOM
--> Sample config files are installed with .sample extension.
--> Remember, these are *SAMPLE* config files. You'll need to read
--> the documentation for more information on how to actually define
--> services, hosts, etc. to fit your particular needs.
--> Remenber to include the the http icinga configuration file in the
--> /etc/httpd/conf/httpd.conf file.
EOM
}
post_remove() {
userdel icinga
groupdel icinga
}
|