fix exec syntax error

This commit is contained in:
Leif Johansson 2018-02-12 00:43:32 +01:00
parent 46878e1090
commit 3cb9e38d5c

View file

@ -159,12 +159,12 @@ class md_publisher(Array $allow_clients = ['any'], $keyname = undef, String $dir
package {'lighttpd': ensure => latest } ->
service {'lighttpd': ensure => running } ->
exec {'enable-ssl':
cmd => "/usr/sbin/lighttpd-enable-mod ssl",
onlyif => "test ! -h /etc/lighttpd/conf-enabled/*ssl*"
command => "/usr/sbin/lighttpd-enable-mod ssl",
onlyif => "test ! -h /etc/lighttpd/conf-enabled/*ssl*"
} ->
exec {'server.pem':
cmd => "cat /etc/ssl/private/${_keyname}.key /etc/ssl/certs/${_keyname}.crt > /etc/lighttpd/server.pem",
onlyif => "test ! -f /etc/lighttpd/server.pem -a -f /etc/ssl/private/${_keyname}.key -a -f /etc/ssl/certs/${_keyname}.crt"
command => "cat /etc/ssl/private/${_keyname}.key /etc/ssl/certs/${_keyname}.crt > /etc/lighttpd/server.pem",
onlyif => "test ! -f /etc/lighttpd/server.pem -a -f /etc/ssl/private/${_keyname}.key -a -f /etc/ssl/certs/${_keyname}.crt"
} ->
apparmor::profile { 'usr.sbin.lighttpd': source => '/etc/apparmor-cosmos/usr.sbin.lighttpd' } ->
sunet::misc::ufw_allow {'allow-lighttpd':