Commit 200272c1 by Elan Ruusamäe Committed by Stéphane Graber

templates: fedora requires openssl binary

/usr/share/lxc/templates/lxc-fedora: line 1078: openssl: command not found Signed-off-by: 's avatarElan Ruusamäe <glen@delfi.ee>
parent e721f119
...@@ -1336,6 +1336,10 @@ type curl >/dev/null 2>&1 ...@@ -1336,6 +1336,10 @@ type curl >/dev/null 2>&1
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
needed_pkgs="curl $needed_pkgs" needed_pkgs="curl $needed_pkgs"
fi fi
type openssl >/dev/null 2>&1
if [ $? -ne 0 ]; then
needed_pkgs="openssl $needed_pkgs"
fi
if [ -n "$needed_pkgs" ]; then if [ -n "$needed_pkgs" ]; then
echo "Missing commands: $needed_pkgs" 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