Updatecheck

This commit is contained in:
Akamaru 2016-02-28 15:09:04 +01:00
parent 1924eddeaa
commit 8b8299e254
1 changed files with 8 additions and 1 deletions

View File

@ -32,6 +32,12 @@ function run(msg, matches)
print(text)
return 'Upgrade durchgeführt!'
end
if string.match(msg.text, '^/[Cc][Hh][Ee][Cc][Kk]$') then
cmd = run_bash("sudo apt-get --just-print upgrade")
text = 'Es gibt '..string.match(cmd, '(%d+) aktualisiert')..' Updates'
return text
end
-- vcgencmd works only on Raspberry Pi
if string.match(msg.text, '^/[Tt][Ee][Mm][Pp]$') then
@ -64,7 +70,8 @@ return {
"^/[Uu][Pp][Gg][Rr][Aa][Dd][Ee]$",
"^/[Tt][Ee][Mm][Pp]$",
"^/[Vv][Oo][Ll][Tt]$",
"^/[Tt][Aa][Kk][Tt]$"
"^/[Tt][Aa][Kk][Tt]$",
"^/[Cc][Hh][Ee][Cc][Kk]$"
},
run = run,
privileged = true