dev/provisioning/modules/systemd/manifests/init.pp
author Chloe Laisne <chloe.laisne@gmail.com>
Sun, 02 Oct 2016 21:38:09 +0200
changeset 316 fb11295ef666
parent 146 dc4d1cdc47e0
permissions -rw-r--r--
Add instructions to chronology

class systemd {

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

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

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

}