Update smsquitto daemon

This commit is contained in:
denis
2021-04-15 15:12:43 +02:00
parent d21e6fc4e1
commit 7c91e9d4f2
49 changed files with 37183 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/data/data/com.termux/files/usr/bin/bash
PID=$(ps -aux | grep smsquittod | grep -v grep | awk '{print $2}')
if [ -z $PID ]; then
echo "Service smsquittod is not running"
else
termux-notification --sound --title "Smsquitto" --content "Service smsquittod is running pid: $PID"
fi