Commit 9f4b078b2033f934611bd19d374f58088c4df1ef
1 parent
2923fd3c
Exists in
master
and in
90 other branches
disable firewalld if installed
Signed-off-by: Gustavo Jaruga <darksshades@gmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com> Signed-off-by: Lucas Moura <lucas.moura128@gmail.com>
Showing
1 changed file
with
9 additions
and
0 deletions
Show diff stats
cookbooks/basics/recipes/default.rb
... | ... | @@ -36,6 +36,15 @@ service 'ntpd' do |
36 | 36 | action [:enable, :start] |
37 | 37 | end |
38 | 38 | |
39 | +service 'firewalld' do | |
40 | + action [:disable, :stop] | |
41 | + ignore_failure true | |
42 | +end | |
43 | + | |
44 | +service 'sshd' do | |
45 | + action [:enable] | |
46 | +end | |
47 | + | |
39 | 48 | # FIXME on Debian it's postgresql-client |
40 | 49 | package 'postgresql' |
41 | 50 | ... | ... |