From b8359ae505037dbe6065402eb9e9b8428f3061b9 Mon Sep 17 00:00:00 2001 From: Michael Stanclift Date: Sat, 30 May 2020 21:23:02 -0500 Subject: [PATCH] apt install quieter --- CHANGELOG.md | 5 ++--- gravity-sync.sh | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d33f5a2..17b6267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,12 +12,11 @@ - No new Star Trek references. #### 1.7.4 -- Changelog polarity reversed after heated discussions with marketing team. -- Improved method to activate development branch updates, as added in 1.7.2. -- `./gravity-sync.sh dev` will now toggle dev flag on/off. No `touch` required, although it still works that way under the covers. +- (**Featureish**) `./gravity-sync.sh dev` will now toggle dev flag on/off. No `touch` required, although it still works that way under the covers. Improvement of methods added in 1.7.2. - Detects absence of ssh client command on host OS (DietPi) - Detects absence of rsync client command on host OS (DietPi) - Detects absence of ssh-keygen on host OS and will use dropbearkey as an alternative (DietPi) +- Changelog polarity reversed after heated discussions with marketing team. #### 1.7.3 - Cleaning up output of argument listing diff --git a/gravity-sync.sh b/gravity-sync.sh index cf740a6..82455c8 100755 --- a/gravity-sync.sh +++ b/gravity-sync.sh @@ -72,7 +72,7 @@ NEED="[${BLUE}NEED${NC}]" # Import Settings function import_gs { - MESSAGE="Importing ${CONFIG_FILE} Settings" + MESSAGE="Importing ${CONFIG_FILE} Settings" echo -en "${STAT} $MESSAGE" if [ -f $HOME/${LOCAL_FOLDR}/${CONFIG_FILE} ] then @@ -627,7 +627,7 @@ function distro_check { if hash apt-get 2>/dev/null then PKG_MANAGER="apt-get" - PKG_INSTALL="sudo ${PKG_MANAGER} --yes --no-install-recommends install" + PKG_INSTALL="sudo ${PKG_MANAGER} --yes --no-install-recommends --quiet install" elif hash rpm 2>/dev/null then if hash dnf 2>/dev/null