Updatecheck
This commit is contained in:
parent
1924eddeaa
commit
8b8299e254
@ -33,6 +33,12 @@ function run(msg, matches)
|
||||
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
|
||||
text = run_bash('vcgencmd measure_temp')
|
||||
@ -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
|
||||
|
Reference in New Issue
Block a user