Hello,

I created puppet class and I want the file operation to be executed on all 
servers but not on server with hostname "'server1.domain.com". I tried this 
class, but it does not work. Is there any other way? Thanks


class test {
    if $hostname != 'server1.domain.com' {
                file { "/etc/ntp.conf":
                        owner   => root,
                        group   => root,
                        mode    => 644,
                        source  => "puppet:///files/server/ntp.conf",
                }
    }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to