21 lines
652 B
Bash
21 lines
652 B
Bash
pushd /tmp
|
|
|
|
curl -o kongkong_init.py https://git.tobyliu.com/toby/common-tools/raw/branch/main/kongkong_init.py
|
|
remoteid=`cat /usr/local/bin/frpc.ini | grep "meta_id =" | cut -d " " -f 3`
|
|
python3 kongkong_init.py "$remoteid"
|
|
sudo cp frpc.ini /usr/local/bin
|
|
|
|
if command -v yum &> /dev/null
|
|
then
|
|
sudo yum install -y php-cli php-snmp
|
|
else
|
|
sudo apt-get install -y php-cli php-snmp
|
|
fi
|
|
|
|
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
|