Skip to content

Commit

Permalink
Merge pull request #1148 from glensc/fed-openssl
Browse files Browse the repository at this point in the history
templates: fedora requires openssl binary
  • Loading branch information
Christian Brauner committed Aug 23, 2016
2 parents 6cbcf34 + 51f88c5 commit f39f2ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions templates/lxc-fedora.in
Expand Up @@ -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"
Expand Down

0 comments on commit f39f2ea

Please sign in to comment.