refactor: update curl commands to use -sSL for silent and follow redirects

This commit is contained in:
Nawaz Dhandala
2026-03-06 13:21:55 +00:00
parent 7162c8fbca
commit 9d0afe0d36
5 changed files with 8 additions and 8 deletions

View File

@@ -7,16 +7,16 @@
# Add these lines to: sudo crontab -e
# Run this on Reboot.
@reboot sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled
@reboot sudo curl -sSL https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled
# Run this once every 24 hours.
0 0 * * * sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled
0 0 * * * sudo curl -sSL https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled
## FOR AWS EC2
# Run this on Reboot.
@reboot sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled aws-ec2
@reboot sudo curl -sSL https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled aws-ec2
# Run this once every 24 hours.
0 0 * * * sudo curl https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled aws-ec2
0 0 * * * sudo curl -sSL https://oneuptime.com/chart/install.sh | sudo bash -s thirdPartyBillingEnabled aws-ec2