From 90ce0d262f8dffbd85eb4aebe89dc4f8a527a81c Mon Sep 17 00:00:00 2001 From: brandonparsons Date: Thu, 5 Dec 2013 05:57:21 -0700 Subject: [PATCH] Specify the service name for ssh Current code was asking for service 'openssh' which does not exist. It is 'ssh'. Specifying a name in the `service.running` block fixes this. --- openssh/init.sls | 1 + 1 file changed, 1 insertion(+) diff --git a/openssh/init.sls b/openssh/init.sls index bbefa27..6ea329b 100644 --- a/openssh/init.sls +++ b/openssh/init.sls @@ -6,6 +6,7 @@ openssh: {% endif %} service.running: - enable: True + - name: ssh - require: - pkg: openssh - file: sshd_banner