dev/provisioning/modules/systemd/manifests/init.pp
author ymh <ymh.work@gmail.com>
Tue, 20 Dec 2016 23:42:48 +0100
changeset 482 3ea05479ce17
parent 146 dc4d1cdc47e0
permissions -rw-r--r--
Added tag 0.0.14 for changeset 002a05cd849f

class systemd {

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

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

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

}