mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
refactor: update curl commands to use -sSL for silent and follow redirects
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user