Re: [Puppet Users] Problems with starting service

2014-06-09 Thread jcbollinger
On Friday, March 16, 2012 4:09:25 AM UTC-5, Luis Festas Matos wrote: Hi Gary, I'm trying to start sshd. But the command to start sshd is service ssh start at least on the prompt line. If I change it to 'sshd' on the params class it gives me the following error: err:

Re: [Puppet Users] Problems with starting service

2014-06-05 Thread Dennis Gearon
I tried EVERY possible version to restart ssh(d) on Ubuntu, Service, Upstart, init.d. I could not get any of them to acknowledge that there was an ssh daemon. But SSH works, and changes to /etc/ssh/ssh_config have effect. Weird. On Thursday, March 15, 2012 1:51:44 PM UTC-7, Gary Larizza

Re: [Puppet Users] Problems with starting service

2012-03-16 Thread Luis Festas Matos
Hi Gary, I'm trying to start sshd. But the command to start sshd is service ssh start at least on the prompt line. If I change it to 'sshd' on the params class it gives me the following error: err: /Stage[main]/Ssh::Service/Service[sshd]: Could not evaluate: Could not find init script for

Re: [Puppet Users] Problems with starting service

2012-03-16 Thread Gary Larizza
Yep, Forgot that Ubuntu uses 'ssh' whereas CentOS uses 'sshd'. Have you seen this bug -- https://projects.puppetlabs.com/issues/12773 May be appropriate here. -Gary On Fri, Mar 16, 2012 at 8:09 PM, Luis Festas Matos lufe...@gmail.comwrote: Hi Gary, I'm trying to start sshd. But the command

[Puppet Users] Problems with starting service

2012-03-15 Thread Luis Festas Matos
Hi all, I've been following the Puppet Pro book and trying to do a configuration of a ssh module like it's told in the book. I'm on Ubuntu 10.10. The files I have are the following: on /etc/puppet/modules/ssh/manifests I have the config.pp init.pp install.pp params.pp service.pp files

Re: [Puppet Users] Problems with starting service

2012-03-15 Thread Gary Larizza
Are you trying to start 'ssh' or 'sshd' as a service ( you have $ssh_service_name = 'ssh' in your params class)? On Fri, Mar 16, 2012 at 12:23 AM, Luis Festas Matos lufe...@gmail.comwrote: Hi all, I've been following the Puppet Pro book and trying to do a configuration of a ssh module like