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