summaryrefslogtreecommitdiff
path: root/legacy/busybox/busybox.pre-deinstall
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2021-10-07 17:31:10 +0000
committerZach van Rijn <me@zv.io>2021-10-07 17:31:10 +0000
commitb53c023d3847f417ba79fc207de35b23d50dd7b0 (patch)
tree09475576abd09bc9a9f9c0ed6c2787aeb31ec27b /legacy/busybox/busybox.pre-deinstall
parent461d0effc689a5b2e564b0ed1e47e268264de65c (diff)
parentff476413e30a6cf477364eeed12ed06540a8b436 (diff)
downloadpackages-b53c023d3847f417ba79fc207de35b23d50dd7b0.tar.gz
packages-b53c023d3847f417ba79fc207de35b23d50dd7b0.tar.bz2
packages-b53c023d3847f417ba79fc207de35b23d50dd7b0.tar.xz
packages-b53c023d3847f417ba79fc207de35b23d50dd7b0.zip
Merge branch '20211005-zv-remove-legacy' into 'master'
legacy/*: cleanup packages that can 'definitely go' See merge request adelie/packages!625
Diffstat (limited to 'legacy/busybox/busybox.pre-deinstall')
-rw-r--r--legacy/busybox/busybox.pre-deinstall9
1 files changed, 0 insertions, 9 deletions
diff --git a/legacy/busybox/busybox.pre-deinstall b/legacy/busybox/busybox.pre-deinstall
deleted file mode 100644
index f1e10ba92..000000000
--- a/legacy/busybox/busybox.pre-deinstall
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Remove all symlinks to busybox
-cd /
-for link in $(busybox --list-full); do
- if [ -L "$link" ] && [ "$(readlink $link)" = "/bin/busybox" ]; then
- rm "$link"
- fi
-done