Skip to content

Commit

Permalink
Merge pull request #208 from alexjfisher/deferred
Browse files Browse the repository at this point in the history
Allow `systemd::unit_file` `Deferred` `content`
  • Loading branch information
bastelfreak committed Jul 27, 2021
2 parents 7ed893b + c96d245 commit 8941930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/unit_file.pp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Creates a systemd unit file
# @summary Creates a systemd unit file
#
# @api public
#
Expand Down Expand Up @@ -52,7 +52,7 @@
define systemd::unit_file (
Enum['present', 'absent', 'file'] $ensure = 'present',
Stdlib::Absolutepath $path = '/etc/systemd/system',
Optional[Variant[String, Sensitive[String]]] $content = undef,
Optional[Variant[String, Sensitive[String], Deferred]] $content = undef,
Optional[String] $source = undef,
Optional[Stdlib::Absolutepath] $target = undef,
String $owner = 'root',
Expand Down

0 comments on commit 8941930

Please sign in to comment.