blob: 3e6912a3c6779da49e1efce45556998ceac03a29 (
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
|
post_install(){
cat << _EOF
=> Be sure to restart Nautilus for RabbitCVS to get loaded.
=> Restart nautilus with the following commands:
=> $ nautilus -q
=> $ pgrep -f service.py | xargs kill
=> $ nohup nautilus > /dev/null &
_EOF
}
post_upgrade(){
cat << _EOF
=> Be sure to restart Nautilus for RabbitCVS to get reloaded.
=> Restart nautilus with the following commands:
=> $ pgrep -f service.py | xargs kill
=> $ nautilus -q
=> $ nohup nautilus > /dev/null &
_EOF
}
post_remove(){
cat << _EOF
=> Be sure to restart Nautilus for RabbitCVS to get unloaded.
=> Restart nautilus with the following commands:
=> $ pgrep -f service.py | xargs kill
=> $ nautilus -q
=> $ nohup nautilus > /dev/null &
_EOF
}
|