Puppet: System Administration Automated

Puppet Training Schedule
Next Class July 27-29
New York, New York
Discount before July 1st

Solaris CDE login recipe

Recipe for managing Solaris CDE Login service on a single host.

Intro

A simple recipe for managing the service cde-login on a Solaris host. It's simple but demos the concept nicely - something I badly need as a beginner with Puppet.

Issues

This is probably not the best way to handle this but it can be included in a larger install

It is also a dramatic test of the concept; nothing says success like seeing the XWindow login for your test host vanish and the display revert to a pure CLI environment.

-- bdunbar

Code

class cde-login {
        service { cde-login:
                ensure => "stopped",
                enable => "false"
        }
}