Skip to content

Commit 1761ca0

Browse files
committed
curl instead of ping
1 parent 2943c89 commit 1761ca0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## 3.1.1 - 2024-06-08
7+
## 3.1.2 - 2024-07-03
88

99
### Changed
10+
- use curl https://ncsa.illinois.edu/ to see if network is alive
11+
12+
## 3.1.1 - 2024-06-08
1013

14+
### Changed
1115
- healthmonitor/longhorn are now disabled by default
1216

1317
### Fixed
14-
1518
- missing secret/storageclass additional helm charts for manila
1619
- ability to enable/disable permissions fix for acme
1720

terraform/modules/rke1/templates/user_data.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ write_files:
109109
content: |
110110
#!/usr/bin/bash
111111
echo "sleeping to wait for network"
112-
while ! ping -c 1 -w 0 1.1.1.1 > /dev/null ; do echo "Sleep 10s"; sleep 10; done
112+
while ! curl --fail --silent --output /dev/null http://ncsa.illinois.edu ; do echo "Sleep 10s"; sleep 10; done
113113
%{ if ncsa_security }
114114
sysctl -w net.ipv6.conf.all.disable_ipv6=1
115115
sysctl -w net.ipv6.conf.default.disable_ipv6=1

0 commit comments

Comments
 (0)