You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
321 B
22 lines
321 B
#!/bin/bash
|
|
#services that should be running
|
|
services="nginx,mysql"
|
|
|
|
#cpu usage limit (not divided by core count)
|
|
cpulimit="150"
|
|
|
|
#telegram api-token
|
|
token="123456:ABCDEFGH"
|
|
#telegram user to notify
|
|
userid="123456"
|
|
|
|
#harddrive usage percentage
|
|
hddlimit="50"
|
|
|
|
#harddrive
|
|
hdd="/dev/sda1"
|
|
|
|
memlimit="90"
|
|
|
|
certlimit="1 week"
|