gistfile1.txt
· 311 B · Text
Неформатований
cat /home/tools/SH/updater-netdata.sh
#!/bin/bash
echo -e "Start Updating Netdata"
rm /opt/netdata-last-installer.sh -f
wget https://my-netdata.io/kickstart.sh -O /opt/netdata-last-installer.sh
chmod +x /opt/netdata-last-installer.sh
bash /opt/netdata-last-installer.sh
echo -e "Updating Netdata finishing!"
| 1 | cat /home/tools/SH/updater-netdata.sh |
| 2 | #!/bin/bash |
| 3 | |
| 4 | echo -e "Start Updating Netdata" |
| 5 | |
| 6 | rm /opt/netdata-last-installer.sh -f |
| 7 | wget https://my-netdata.io/kickstart.sh -O /opt/netdata-last-installer.sh |
| 8 | chmod +x /opt/netdata-last-installer.sh |
| 9 | |
| 10 | bash /opt/netdata-last-installer.sh |
| 11 | echo -e "Updating Netdata finishing!" |