Output improved with TERM=dumb
This commit is contained in:
parent
9f77cd1b25
commit
62a6efdd88
|
@ -1,4 +1,4 @@
|
||||||
vn-repo (2.0.62) stable; urgency=low
|
vn-repo (2.0.63) stable; urgency=low
|
||||||
|
|
||||||
* Initial Release.
|
* Initial Release.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
export TERM=dumb
|
||||||
|
|
||||||
if [ "$#" -eq "0" ]; then
|
if [ "$#" -eq "0" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -26,5 +26,5 @@ echo -e "\n# Upgrading servers"
|
||||||
|
|
||||||
for host in $hosts; do
|
for host in $hosts; do
|
||||||
echo -e "\n * Upgrading $host\n"
|
echo -e "\n * Upgrading $host\n"
|
||||||
ssh $host "update-repo vn && DEBIAN_FRONTEND=noninteractive apt-get --quiet --yes install $packages"
|
ssh $host "update-repo vn && DEBIAN_FRONTEND=noninteractive apt-get -qq --yes install $packages"
|
||||||
done
|
done
|
||||||
|
|
Reference in New Issue