dev/provisioning/modules/systemd/manifests/init.pp
author ymh <ymh.work@gmail.com>
Fri, 17 Nov 2017 09:10:41 +0100
changeset 558 64c4050f6a36
parent 146 dc4d1cdc47e0
permissions -rw-r--r--
small correction

class systemd {

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

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

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

}