Puppet Class: conf::config::systemd

Inherits:
conf::install::systemd
Inherited by:
conf::setup::systemd
Defined in:
manifests/config/systemd.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include conf::config::systemd


7
8
9
10
11
12
13
14
15
16
# File 'manifests/config/systemd.pp', line 7

class conf::config::systemd() inherits conf::install::systemd {


  exec { '/bin/systemctl daemon-reload':
    cwd         => '/lib/systemd',
    refreshonly => true,
  }
  Package['systemd'] -> Exec['/bin/systemctl daemon-reload']
  Exec['/bin/systemctl daemon-reload'] -> Service<| |>
}