Skip to content

Commit

Permalink
templates: fedora requires openssl binary
Browse files Browse the repository at this point in the history
/usr/share/lxc/templates/lxc-fedora: line 1078: openssl: command not found

Signed-off-by: Elan Ruusamäe <glen@delfi.ee>
  • Loading branch information
glensc committed Aug 23, 2016
1 parent 6cbcf34 commit 51f88c5
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 51f88c5

Please sign in to comment.