On Oct 31, 2012, at 8:52 AM, Eugene Vilensky wrote:

> Hello,
> 
> I'm trying to send parameters to an Exec ("exec1") based on values, using a 
> case statement.   I've tried putting the two versions of the exec in a case 
> block, which failed (exec1 is a dependency of exec2, and exec2 complained it 
> could not find exec1), and a case statement can't go directly directly into 
> the parameters of the Exec itself
> 
> Google helped me with this thread: 
> http://comments.gmane.org/gmane.comp.sysutils.puppet.user/20597
> 
> But I wonder if there is a more modern way of doing it with 2.7.19 (or 3.0)?
> 
> Many thanks,
> Eugene

You may find the following example useful. It's a syslog class I use that uses 
case statements to set values for variables that are different depending on the 
operating system:

class syslog {
    case $operatingsystem {
        'Fedora': {
            $servicename = 'rsyslog'
            $config = '/etc/rsyslog.conf'
        }
        'RedHat','Scientific': {
            case $operatingsystemrelease {
                /^6.*/: {
                    $servicename = 'rsyslog'
                    $config = '/etc/rsyslog.conf'
                }
                default: {
                    $servicename = 'syslog'
                    $config = '/etc/syslog.conf'
                }
            }
        }
    }
    service { $servicename:
        ensure     => running,
        enable     => true,
        hasrestart => true,
        hasstatus  => true,
    }
    exec { "echo '*.*;local4.none               @rsyslog' >> ${config}":
        unless  => "grep -e '^\*\.\*;local4.none.*rsyslog$' ${config}",
        notify  => Service[$servicename],
    }
    file { '/tmp/.syslog_restarted':
        ensure  => file,
        content => '.',
        notify  => Service[$servicename],
    }
}

If this doesn't help, can paste your code here so we give more specific 
feedback?

-- 
Peter Bukowinski


-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to