dev/provisioning/modules/systemd/manifests/init.pp
author ymh <ymh.work@gmail.com>
Wed, 09 Nov 2016 23:41:15 +0100
changeset 407 2dba812c7ef2
parent 146 dc4d1cdc47e0
permissions -rw-r--r--
add a way to build rpm for puppet files, correct elasticsearch provisioning, correct error on elasticsearch queries + tests

class systemd {

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

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

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

}