repo.or.cz
/
debian-live-boot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Releasing debian version 4.0.0-1.
[debian-live-boot.git]
/
debian
/
live-boot-initramfs-tools.postrm
blob
370b6c307cf31dcdbc8a48094b6463630d77805e
1
#!/bin/sh
2
3
set -e
4
5
case
"
${1}
"
in
6
remove
)
7
if
[
-x
/
usr
/
sbin
/
update-initramfs
] && [
-e
/
etc
/
initramfs-tools
/
initramfs.conf
]
8
then
9
update-initramfs
-u
10
fi
11
;;
12
13
purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear
)
14
15
;;
16
17
*)
18
echo
"postrm called with unknown argument \`
${1}
'"
>&
2
19
exit
1
20
;;
21
esac
22
23
#DEBHELPER#
24
25
exit
0