Nagy Károly Gábriel
6 years ago
1 changed files with 10 additions and 4 deletions
@ -1,12 +1,18 @@
|
||||
#!/bin/sh |
||||
|
||||
# security upgrades |
||||
# /usr/bin/apt-get -q -y --ignore-hold --allow-change-held-packages --allow-unauthenticated -s dist-upgrade | /bin/grep ^Inst | /bin/grep -i securi | /usr/bin/cut -d\ -f2 | /bin/wc -w |
||||
|
||||
# all upgrades |
||||
# /usr/bin/apt-get -q -y --ignore-hold --allow-change-held-packages --allow-unauthenticated -s dist-upgrade | /bin/grep ^Inst | /usr/bin/cut -d\ -f2 | /bin/wc -w |
||||
|
||||
set -o noclobber |
||||
|
||||
me="packs" |
||||
|
||||
LINE=$("$APT" | "$AWK" -v myhost="$myhost" -v time=`date -u +%s%N` '{if ($1~/^Inst/) counter=counter+1} END {if (counter) printf "packages,host=%s packs=%si %s\n",myhost,counter,time}') |
||||
uppaks=$(/usr/bin/apt-get -q -y --ignore-hold --allow-change-held-packages --allow-unauthenticated -s dist-upgrade | /bin/grep ^Inst | /usr/bin/cut -d\ -f2 | /usr/bin/wc -w ) |
||||
secpaks=$(/usr/bin/apt-get -q -y --ignore-hold --allow-change-held-packages --allow-unauthenticated -s dist-upgrade | /bin/grep ^Inst | /bin/grep -i securi | /usr/bin/cut -d\ -f2 | /usr/bin/wc -w ) |
||||
|
||||
if [ -n "${LINE##+([[:space:]])}" ]; then # <= FIXME! find a better way. |
||||
writeline "$LINE" "$MAXLINES" "$me" |
||||
fi |
||||
LINE="packages,host="$myhost" packs="$uppaks"i, security="$secpaks"i "$(/bin/date -u +%s%N)$'\n' |
||||
|
||||
writeline "$LINE" "$MAXLINES" "$me" |
||||
|
Loading…
Reference in new issue