Output improved with TERM=dumb

This commit is contained in:
Juan Ferrer 2019-03-28 17:21:50 +01:00
parent 9f77cd1b25
commit 62a6efdd88
3 changed files with 3 additions and 2 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
vn-repo (2.0.62) stable; urgency=low
vn-repo (2.0.63) stable; urgency=low
* Initial Release.

View File

@ -1,5 +1,6 @@
#!/bin/bash
set -e
export TERM=dumb
if [ "$#" -eq "0" ]; then
exit 1

View File

@ -26,5 +26,5 @@ echo -e "\n# Upgrading servers"
for host in $hosts; do
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