dev/provisioning/modules/systemd/manifests/init.pp
author ymh <ymh.work@gmail.com>
Sun, 04 Dec 2016 13:49:44 +0100
changeset 466 a8effb60ccb6
parent 146 dc4d1cdc47e0
permissions -rw-r--r--
correct discourse display and update

class systemd {

  Exec {
    refreshonly => true,
    path        => $::path,
  }

  exec {
    'systemctl-daemon-reload':
      command => 'systemctl daemon-reload',
  }

  exec {
    'systemd-tmpfiles-create':
      command => 'systemd-tmpfiles --create',
  }

}