Add initial meta-stx to support StarlingX build
[pti/rtp.git] / meta-stx / recipes-support / puppet / files / puppet-dnsmasq / 0002-Fixing-mismatched-permission-on-dnsmasq-conf.patch
1 From b8308a495f853d066c5c0e5d2257a070b033f626 Mon Sep 17 00:00:00 2001
2 From: Kam Nasim <kam.nasim@windriver.com>
3 Date: Tue, 5 Jul 2016 16:46:28 -0400
4 Subject: [PATCH] CGTS-4280: Fixing mismatched permission on dnsmasq.conf which
5  was set to 0640 when created from config_controller (controller-0) but was at
6  0644 on controller-1 through application of this manifest.
7
8 ---
9  packstack/puppet/modules/dnsmasq/manifests/params.pp | 2 +-
10  1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/packstack/puppet/modules/dnsmasq/manifests/params.pp b/packstack/puppet/modules/dnsmasq/manifests/params.pp
13 index 6dd5b96..6129b57 100644
14 --- a/packstack/puppet/modules/dnsmasq/manifests/params.pp
15 +++ b/packstack/puppet/modules/dnsmasq/manifests/params.pp
16 @@ -51,7 +51,7 @@ class dnsmasq::params {
17    }
18  
19    $config_file_mode = $::operatingsystem ? {
20 -    default => '0644',
21 +    default => '0640',
22    }
23  
24    $config_file_owner = $::operatingsystem ? {
25 -- 
26 1.8.3.1
27