blob: 62b3cf0c0576456dc7ee2202544105258c8a3e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
From a5863e19d298789328e11057c469636aa8775847 Mon Sep 17 00:00:00 2001
From: Jinfeng Wang <jinfeng.wang.cn@windriver.com>
Date: Wed, 2 Jul 2025 10:55:53 +0800
Subject: [PATCH] postfix: add preliminary setting
post-install call postconf commands to modify main.cf. When multiple
parameters to postconf, the order of those parameters in main.cf is random.
Then it will reproduce random results in rootfs file(sample-main.cf). To
fix this, add preliminary setting in main.cf.
Upstream-Status: Inappropriate [this is the use of post-install,
upstream is not affected]
Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com>
---
conf/main.cf | 2 ++
1 file changed, 2 insertions(+)
diff --git a/conf/main.cf b/conf/main.cf
index 1d2c8c2..50398ba 100644
--- a/conf/main.cf
+++ b/conf/main.cf
@@ -683,3 +683,5 @@ sample_directory =
#
readme_directory =
inet_protocols = ipv4
+shlib_directory =
+meta_directory =
--
2.34.1
|