summarylogtreecommitdiffstats
path: root/webcit.install
blob: 870e8e367689cef97f9fbbb486ec609656cb2d56 (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
## arg 1:  the new package version
pre_install() {
	:;
}

## arg 1:  the new package version
post_install() {
	echo "run 'systemctl start webcit' and connect to webcit using port 2000 (http://127.0.0.1:2000)"
	echo "or for ssl run 'systemctl start webcits' and connect to webcit using port 2443 (https://127.0.0.1:2443)"
}

## arg 1:  the new package version
## arg 2:  the old package version
pre_upgrade() {
	:;
}

## arg 1:  the new package version
## arg 2:  the old package version
post_upgrade() {
	:;
}

## arg 1:  the old package version
pre_remove() {
	:;
}

## arg 1:  the old package version
post_remove() {
	:;
}