X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=3rdparty%2Fmodules%2Fsystemd%2Fmanifests%2Ftmpfiles.pp;fp=3rdparty%2Fmodules%2Fsystemd%2Fmanifests%2Ftmpfiles.pp;h=0000000000000000000000000000000000000000;hb=c7e7bcc28cc5dc48a7e284a3c82f33df27d1f57d;hp=cad5371de91948ff17ba59adcab223cdcf4483ad;hpb=f89d8091bbf5a7bd8f86ee80abb03c729cea8d74;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/systemd/manifests/tmpfiles.pp b/3rdparty/modules/systemd/manifests/tmpfiles.pp deleted file mode 100644 index cad5371de..000000000 --- a/3rdparty/modules/systemd/manifests/tmpfiles.pp +++ /dev/null @@ -1,24 +0,0 @@ -# Update the systemd temp files -# -# @api public -# -# @see systemd-tmpfiles(8) -# -# @param operations -# The operations to perform on the systemd tempfiles -# -# * All operations may be combined but you'll probably only ever want to -# use ``create`` -# -class systemd::tmpfiles ( - Array[Enum['create','clean','remove']] $operations = ['create'] -) { - - $_ops = join(prefix($operations, '--'), ' ') - - exec { 'systemd-tmpfiles': - command => "systemd-tmpfiles ${_ops}", - refreshonly => true, - path => $::path, - } -}