Add -t option to ssh command for home server updates
This commit is contained in:
parent
7909763acf
commit
9e2888f33f
1 changed files with 9 additions and 8 deletions
|
@ -1,9 +1,9 @@
|
||||||
#!/usr/bin/sh
|
#!/usr/bin/sh
|
||||||
|
|
||||||
count=$(ssh homeServer checkupdates | wc -l)
|
count=$(ssh homeServer -t checkupdates | wc -l)
|
||||||
if [ "$count" = "0" ]; then
|
if [ "$count" = "0" ]; then
|
||||||
count=""
|
echo ""
|
||||||
fi
|
else
|
||||||
echo $count
|
echo $count
|
||||||
echo $count
|
echo $count
|
||||||
if [ "$count" -gt "5" ]; then
|
if [ "$count" -gt "5" ]; then
|
||||||
|
@ -11,3 +11,4 @@ if [ "$count" -gt "5" ]; then
|
||||||
else
|
else
|
||||||
echo "#FF8000"
|
echo "#FF8000"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue