From 5a68a38f46ba9764df40d0a37901f08b2f02d7a2 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Fri, 30 Aug 2024 09:53:51 -0700 Subject: [PATCH] README: fix path in example /etc/systemd/system is the path used in the code: https://github.com/voxpupuli/puppet-systemd/blob/ff0c85e828b17ec485c834b89cd00fbc4fd90665/manifests/unit_file.pp#L73 Fixes #488. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c69faf6..b2ade2ab 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ systemd::unit_file { 'foo.service': This is equivalent to: ```puppet -file { '/usr/lib/systemd/system/foo.service': +file { '/etc/systemd/system/foo.service': ensure => file, owner => 'root', group => 'root',