apt install quieter

This commit is contained in:
Michael Stanclift 2020-05-30 21:23:02 -05:00
parent 385ef3812c
commit b8359ae505
2 changed files with 4 additions and 5 deletions

View File

@ -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

View File

@ -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