15 lines
519 B
Bash
15 lines
519 B
Bash
pushd /tmp
|
|
|
|
curl -o kongkong_init.py https://git.tobyliu.com/toby/common-tools/raw/branch/main/kongkong_init.py
|
|
read -p "Input remote id: " remoteid
|
|
python3 kongkong_init.py "$remoteid"
|
|
sudo cp frpc.ini /usr/local/bin
|
|
|
|
sudo yum install -y php-cli php-snmp
|
|
curl -o test_scandev.php https://git.tobyliu.com/toby/common-tools/raw/branch/main/test_scandev.php
|
|
sudo cp test_scandev.php /usr/local/bin/
|
|
CMD='/usr/bin/php /usr/local/bin/test_scandev.php'
|
|
(crontab -l ; echo "*/5 * * * * $CMD") | sort | uniq | crontab -
|
|
|
|
popd
|