blob: 20bb1073e73243e6e9ea74ad8a874deea8dbf7a9 (
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
|
post_install(){
cat << _EOF
=> Be sure to restart Nemo for RabbitCVS to get loaded.
=> Restart Nemo with the following commands:
=> $ nemo -q
=> $ nohup nemo > /dev/null &
_EOF
}
post_upgrade(){
cat << _EOF
=> Be sure to restart Nemo for RabbitCVS to get reloaded.
=> Restart Nemo with the following commands:
=> $ nemo -q
=> $ nohup nemo > /dev/null &
_EOF
}
post_remove(){
cat << _EOF
=> Be sure to restart Nemo for RabbitCVS to get unloaded.
=> Restart Nemo with the following commands:
=> $ nemo -q
=> $ nohup nemo > /dev/null &
_EOF
}
|