Commit f39f2eaa by Christian Brauner Committed by GitHub

Merge pull request #1148 from glensc/fed-openssl

templates: fedora requires openssl binary
parents 6cbcf34c 51f88c5c
......@@ -1336,6 +1336,10 @@ type curl >/dev/null 2>&1
if [ $? -ne 0 ]; then
needed_pkgs="curl $needed_pkgs"
fi
type openssl >/dev/null 2>&1
if [ $? -ne 0 ]; then
needed_pkgs="openssl $needed_pkgs"
fi
if [ -n "$needed_pkgs" ]; then
echo "Missing commands: $needed_pkgs"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment