summaryrefslogtreecommitdiffstats
path: root/testing/source/bash/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/source/bash/doinst.sh')
-rw-r--r--testing/source/bash/doinst.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/testing/source/bash/doinst.sh b/testing/source/bash/doinst.sh
deleted file mode 100644
index 867958fb8..000000000
--- a/testing/source/bash/doinst.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-if [ -r bin/bash ]; then
- mv bin/bash bin/bash.old
-fi
-mv bin/bash4.new bin/bash
-if [ -f bin/bash.old ]; then
- rm -f bin/bash.old
-fi
-if [ ! -r etc/shells ]; then
- touch etc/shells
- chmod 644 etc/shells
-fi
-if grep -wq /bin/bash etc/shells ; then
- true
-else
- echo /bin/bash >> etc/shells
-fi
-( cd usr/bin ; rm -rf bash )
-( cd usr/bin ; ln -sf /bin/bash bash )