Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
# https://git.puppet.immerda.ch/?p=module-resolvconf;a=blob;f=manifests/init.pp;h=fb570594ab6a53ccd7e8f5a3a9551ad3d81c74ca;hb=HEAD # modules/resolvconf/manifests/init.pp - manage resolvconf stuff # Copyright (C) 2007 admin@immerda.ch # GPLv3 # modules_dir { "resolvconf": } class resolvconf { $real_resolvconf_domain = $resolvconf_domain ? { '' => 'glei.ch', default => $resolvconf_domain, } $real_resolvconf_search = $resolvconf_search ? { '' => 'glei.ch', default => $resolvconf_search, } $real_resolvconf_nameservers = $resolvconf_nameservers ? { '' => '212.103.67.60:212.103.67.61', default => $resolvconf_nameservers, } file { '/etc/resolv.conf': path => '/etc/resolv.conf', owner => root, group => 0, mode => 444, content => template("resolvconf/resolvconf.erb") } }
This paste will be private.
From the Design Piracy series on my blog: