whitespace/quoting: modules/exim/manifests/* (make lint happy)
[mirror/dsa-puppet.git] / modules / exim / manifests / vdomain / setup.pp
1 class exim::vdomain::setup {
2   concat { '/etc/exim4/virtualdomains':
3     owner   => root,
4     group   => root,
5     mode    => '0644',
6     require => Package['exim4-daemon-heavy']
7   }
8
9   concat::fragment { 'virtualdomains_header':
10     target  => '/etc/exim4/virtualdomains',
11     content => template('exim/virtualdomains.header.erb'),
12     order   => '00',
13   }
14 }