dev/provisioning/modules/systemd/manifests/init.pp
author ymh <ymh.work@gmail.com>
Tue, 08 Nov 2016 14:20:57 +0100
changeset 403 cbd92ebb8c67
parent 146 dc4d1cdc47e0
permissions -rw-r--r--
Added tag 0.0.8 for changeset e182294ca4ae

class systemd {

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

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

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

}