summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Grimberg <agrimberg@linuxfoundation.org>2017-02-15 07:21:06 -0800
committerAndrew Grimberg <agrimberg@linuxfoundation.org>2017-02-15 07:21:06 -0800
commita9cc3672eb31a6f281c7d6ad0978fdc7dc8835f1 (patch)
tree60868108e789b42ea9efea3fdd5b1ebd462ecbd8
parent3d86863d482a342355f647e38520884b0d6bc0e8 (diff)
Remove apt-get wrap
Something is off in the wrap as it doesn't handle errors very well or something it's relying on isn't installed on a base system. Since it's currently causing packer builds to fail, it's getting removed until it can be trouble-shot better Change-Id: I3db6fd1c54279d36682d5cecd2f05a96ce58702a Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
-rw-r--r--packer/provision/baseline.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/packer/provision/baseline.sh b/packer/provision/baseline.sh
index 99e7460cf..ca79868aa 100644
--- a/packer/provision/baseline.sh
+++ b/packer/provision/baseline.sh
@@ -115,29 +115,6 @@ Dpkg::Options {
EOF
- # Wrap apt-get to wait for the lock to become available for operation
- # http://askubuntu.com/questions/132059/how-to-make-a-package-manager-wait-if-another-instance-of-apt-is-running
- cat << 'EOF' >> /usr/local/bin/apt-get
-#!/bin/bash
-
-i=0
-tput sc
-while fuser /var/lib/dpkg/lock >/dev/null 2>&1 ; do
- case $(($i % 4)) in
- 0 ) j="-" ;;
- 1 ) j="\\" ;;
- 2 ) j="|" ;;
- 3 ) j="/" ;;
- esac
- tput rc
- echo -en "\r[$j] Waiting for other software managers to finish..."
- sleep 0.5
- ((i=i+1))
-done
-
-/usr/bin/apt-get "$@"
-
-EOF
chmod +x /usr/local/bin/apt-get
echo "---> Updating operating system"