commitando os sources pra gerar o pacote debian
[remotepc] / deb-package / server / notes / postrm
1 #!/bin/sh -e
2 set -e
3
4 if which update-icon-caches >/dev/null 2>&1 ; then
5         update-icon-caches /usr/share/icons/hicolor
6 fi
7
8 # remove configuration
9
10 # Delete the .desktop file in case the app-installer didn't.
11 rm -f /usr/share/applications/pcremote-server.desktop
12
13 # Delete the pcremoteclt directory in case the app-installer didn't
14 rm -fr /usr/share/pcremote-server
15
16 # Delete the symbolics links files in case the app-installer didn't.
17 rm -f /usr/bin/pcremote-server
18
19 # Delete the pcremote icon
20 rm -f /usr/share/icons/hicolor/48x48/pcremote.png
21
22 # Delete the pcremote menu
23 rm -f /usr/share/menu/pcremote-server-menu
24
25 exit 0