From 62a6efdd88c7459f664635eb10793b4ddc7ab76f Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Thu, 28 Mar 2019 17:21:50 +0100 Subject: [PATCH] Output improved with TERM=dumb --- debian/changelog | 2 +- vn-branch | 1 + vn-deploy | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index c6bd6d3..e3afd99 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -vn-repo (2.0.62) stable; urgency=low +vn-repo (2.0.63) stable; urgency=low * Initial Release. diff --git a/vn-branch b/vn-branch index 7a583e6..26663d8 100755 --- a/vn-branch +++ b/vn-branch @@ -1,5 +1,6 @@ #!/bin/bash set -e +export TERM=dumb if [ "$#" -eq "0" ]; then exit 1 diff --git a/vn-deploy b/vn-deploy index 8567c45..1dbf90e 100755 --- a/vn-deploy +++ b/vn-deploy @@ -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