summaryrefslogtreecommitdiff
path: root/autoscripts
diff options
context:
space:
mode:
authorjoey <joey>2000-12-21 19:35:32 +0000
committerjoey <joey>2000-12-21 19:35:32 +0000
commit1761e99d415d54d6293a611cf25bde66c8a9c634 (patch)
treea13c9a283c8110b8d0dd288d3308a0ede8ed37a0 /autoscripts
parentaa6f2f1df86fbe57ea61565236631c02c0b3cb85 (diff)
r403: * dh_installwm: Moved update-alternatives --remove call to prerm,
Closes: #80209 * ALso guarded all update-alternatives --remove calls.
Diffstat (limited to 'autoscripts')
-rw-r--r--autoscripts/postrm-wm2
-rw-r--r--autoscripts/prerm-wm3
-rw-r--r--autoscripts/prerm-xaw9
3 files changed, 8 insertions, 6 deletions
diff --git a/autoscripts/postrm-wm b/autoscripts/postrm-wm
deleted file mode 100644
index c4670b9f..00000000
--- a/autoscripts/postrm-wm
+++ /dev/null
@@ -1,2 +0,0 @@
-update-alternatives --remove x-window-manager #WM#
-
diff --git a/autoscripts/prerm-wm b/autoscripts/prerm-wm
new file mode 100644
index 00000000..b97d627f
--- /dev/null
+++ b/autoscripts/prerm-wm
@@ -0,0 +1,3 @@
+if [ "$1" = "remove" ]; then
+ update-alternatives --remove x-window-manager #WM#
+fi
diff --git a/autoscripts/prerm-xaw b/autoscripts/prerm-xaw
index 2507a2f5..98837f82 100644
--- a/autoscripts/prerm-xaw
+++ b/autoscripts/prerm-xaw
@@ -1,4 +1,5 @@
-for opts in #OPTS#; do
- update-alternatives --quiet --remove $opts
-done
-
+if [ "$1" = "remove" ]; then
+ for opts in #OPTS#; do
+ update-alternatives --quiet --remove $opts
+ done
+fi