Create Empty Directories (Windows installer) (#20124)
thiagoftsm committed
Apr 14, 2025 at 18:22 UTC
1dc915c085d5618daf8708fabff483fd25eab349
1 file changed
+26
-1
packaging/windows/netdata.wxs.in
+26
-1
@@ -46,6 +46,10 @@
46
<ComponentRef Id="NetdataRoot" />
47
<ComponentRef Id="NetdataVarLib" />
48
<ComponentRef Id="NetdataVarLibNetdata" />
49
+ <ComponentRef Id="NetdataEtcGo" />
50
+ <ComponentRef Id="NetdataEtcHealth" />
51
+ <ComponentRef Id="NetdataEtcPython" />
52
+ <ComponentRef Id="NetdataEtcStatsd" />
53
<ComponentGroupRef Id="WevtComponents" />
54
<ComponentRef Id="NetdataService" />
55
</Feature>
@@ -65,7 +69,12 @@
69
</Directory>
70
</Directory>
71
<Directory Id="ETCDIR" Name="etc">
68
- <Directory Id="ETCDIRNETDATA" Name="netdata" />
72
+ <Directory Id="ETCDIRNETDATA" Name="netdata">
73
+ <Directory Id="ETCDIRNETDATAGO" Name="go.d" />
74
+ <Directory Id="ETCDIRNETDATAHEALTH" Name="health.d" />
75
+ <Directory Id="ETCDIRNETDATAPYTHON" Name="python.d" />
76
+ <Directory Id="ETCDIRNETDATASTATSD" Name="statsd.d" />
77
+ </Directory>
78
</Directory>
79
<Directory Id="DEVDIR" Name="dev">
80
<Directory Id="DEVSHMDIR" Name="shm" />
@@ -131,6 +140,22 @@
140
<CreateFolder />
141
</Component>
142
143
+ <Component Id="NetdataEtcGo" Directory="ETCDIRNETDATAGO" Guid="9d9b7859-75c0-4119-b2fc-a704599a3157">
144
+ <CreateFolder />
145
+ </Component>
146
+
147
+ <Component Id="NetdataEtcHealth" Directory="ETCDIRNETDATAHEALTH" Guid="177b08a0-7bb6-4878-9bcf-c68642c1aa23">
148
+ <CreateFolder />
149
+ </Component>
150
+
151
+ <Component Id="NetdataEtcPython" Directory="ETCDIRNETDATAPYTHON" Guid="9f4f1e99-47e1-4d88-8836-c02a98d30056">
152
+ <CreateFolder />
153
+ </Component>
154
+
155
+ <Component Id="NetdataEtcStatsd" Directory="ETCDIRNETDATASTATSD" Guid="5f53221b-691f-4026-8396-52c6b2ac025f">
156
+ <CreateFolder />
157
+ </Component>
158
+
159
<Component Id="NetdataRoot" Directory="ROOTDIR" Guid="5f0b7def-c4e6-417a-a5ae-b6f9c4aff14e">
160
<CreateFolder />
161
</Component>