Puppet Class: systemd::resolved::config

Inherits:
systemd::resolved
Defined in:
manifests/resolved/config.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'manifests/resolved/config.pp', line 1

class systemd::resolved::config inherits systemd::resolved {

  Exec {
    path => '/bin:/sbin:/usr/bin:/usr/sbin',
  }

  file { '/etc/systemd/resolved.conf':
    ensure  => 'present',
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
    content => template("${module_name}/resolved.erb"),
  }
}