You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise"Downloaded EFS Utils package checksum #{checksum} does not match expected checksum #{node['cluster']['efs_utils']['sha256']}"ifchecksum != node['cluster']['efs_utils']['sha256']
raise"Downloaded stunnel package checksum #{checksum} does not match expected checksum #{node['cluster']['stunnel']['sha256']}"ifchecksum != node['cluster']['stunnel']['sha256']
100
+
end
101
+
end
102
+
103
+
bash"install stunnel"do
104
+
cwdnode['cluster']['sources_dir']
105
+
code<<-STUNNELINSTALL
106
+
set -e
107
+
108
+
tar xvfz #{stunnel_tarball}
109
+
cd stunnel-#{node['cluster']['stunnel']['version']}
0 commit comments