diff options
author | intrigeri <intrigeri@boum.org> | 2011-01-08 19:39:10 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2011-01-08 19:39:10 +0100 |
commit | d76f922dfb1120c013da1b2c1904aac2d580e342 (patch) | |
tree | b6392417810ea3a9510305afe009553f93cdedce /manifests | |
parent | c5dc8ff5fc7762fc81871f71bed54daaee1f8707 (diff) |
Make sources snippets world-readable.
Not doing this breaks big parts of functionality, such as aptitude why.
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/sources_list.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/sources_list.pp b/manifests/sources_list.pp index ff8f21a..86b35a7 100644 --- a/manifests/sources_list.pp +++ b/manifests/sources_list.pp @@ -13,7 +13,7 @@ define apt::sources_list ( file { "/etc/apt/sources.list.d/${name}": ensure => $ensure, - owner => root, group => 0, mode => 0600; + owner => root, group => 0, mode => 0644; } if $source { |