Cleanup dirs

This commit is contained in:
Ubergeek
2019-01-31 01:19:57 +00:00
parent 7855af95cc
commit afe9b34945
15 changed files with 0 additions and 0 deletions

10
plugins/check_proc Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
export proc=$1
pgrep $proc > /dev/null
if [ $? -ne "0" ]
then
exit 1
else
exit 0
fi