repo.or.cz
/
gpodder.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gPodder 3.7.0 for Harmattan
[gpodder.git]
/
debian
/
prerm
blob
02a1ca811a4f534271210d5f7cd591916530d028
1
#!/bin/sh
2
3
# Optification - remove symlinks created by postinst
4
5
SYMLINKS
=/
opt
/
gpodder
/
optification.symlinks
6
7
if
[
-f
$SYMLINKS
];
then
8
for
file
in
$
(
cat
$SYMLINKS
);
do
9
if
[
-L
$file
];
then
10
echo
"Removing symlink:
$file
"
11
rm
-f
$file
12
fi
13
done
14
fi
15
16
echo
"Removing:
$SYMLINKS
"
17
rm
-f
$SYMLINKS
18