You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
478 B
26 lines
478 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
# test if apt-check is working as expected.
|
||
|
|
||
|
OUT=`/usr/lib/update-notifier/apt-check 2>&1`
|
||
|
oldIFS=$IFS
|
||
|
IFS=';'
|
||
|
j=0
|
||
|
for STRING in $OUT; do
|
||
|
case $j in
|
||
|
0)
|
||
|
UPG=$STRING;;
|
||
|
1)
|
||
|
SEC=$STRING;;
|
||
|
esac
|
||
|
j=`expr $j + 1`
|
||
|
done
|
||
|
IFS=$oldIFS
|
||
|
if [ $UPG -ge 0 ]; then
|
||
|
echo "Success: /usr/lib/update-notifier/apt-check is working"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "Failure: /usr/lib/update-notifier/apt-check is NOT working"
|
||
|
exit 1
|
||
|
fi
|