diff options
author | intrigeri <intrigeri@boum.org> | 2013-01-03 19:57:44 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2013-01-03 19:57:44 +0100 |
commit | 1fe1fe66c3f75987833756ff22427af4821b3700 (patch) | |
tree | 71bb64677b850accc1c5268d1c1834259b00f108 /manifests/cron | |
parent | ded81d8edcc9a7cc8275a68f669fde896379b12e (diff) |
Fix overzealous linting.
We do want to see \n expanded in this string.
Diffstat (limited to 'manifests/cron')
-rw-r--r-- | manifests/cron/dist_upgrade.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron/dist_upgrade.pp b/manifests/cron/dist_upgrade.pp index a880a66..74403bb 100644 --- a/manifests/cron/dist_upgrade.pp +++ b/manifests/cron/dist_upgrade.pp @@ -19,7 +19,7 @@ dist-upgrade -y -o APT::Get::Show-Upgraded=true -o 'DPkg::Options::=--force-conf } file { '/etc/cron-apt/config.d/MAILON': - content => 'MAILON=upgrade\n', + content => "MAILON=upgrade\n", owner => root, group => 0, mode => '0644', |