2
0
mirror of git://github.com/lxc/lxc synced 2025-08-31 00:09:37 +00:00

Merge pull request #1148 from glensc/fed-openssl

templates: fedora requires openssl binary
This commit is contained in:
Christian Brauner
2016-08-23 18:58:08 +02:00
committed by GitHub

View File

@@ -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"