repo.or.cz
/
fvwm-themes.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cvsimport
[fvwm-themes.git]
/
debian
/
postrm
blob
550d09886068d760aa98fe68f9ad9f600ab45709
1
#!/bin/sh
2
3
set -e
4
5
case
"
$1
"
in
6
purge|remove|upgrade
)
7
if
[
-x
/
usr
/
bin
/
update-menus
];
then
8
update-menus
9
fi
10
;;
11
12
failed-upgrade|abort-install|abort-upgrade|disappear
)
13
;;
14
15
*)
16
echo
"postrm called with unknown argument \`
$1
'"
>&
2
17
exit
1
18
;;
19
esac