f0d806
more PowerTools Fixes
@@ -58,10 +58,10 @@ filter_system_release_packages = False
|
|
58
58
|
gather_prepopulate = "centos-packages.json"
|
59
59
|
|
60
60
|
gather_method = {
|
61
|
-
"^(?!(AppStream|
|
61
|
+
"^(?!(AppStream|PowerTools)).*$":{
|
62
62
|
"comps": "deps"
|
63
63
|
},
|
64
|
-
"^(AppStream|
|
64
|
+
"^(AppStream|PowerTools)$": "hybrid",
|
65
65
|
}
|
66
66
|
|
67
67
|
gather_backend = "dnf"
|
@@ -96,7 +96,7 @@ lorax_options = [
|
|
96
96
|
]
|
97
97
|
|
98
98
|
buildinstall_skip = [
|
99
|
-
("^(AppStream|
|
99
|
+
("^(AppStream|PowerTools)$", {
|
100
100
|
"*": True
|
101
101
|
}),
|
102
102
|
]
|
@@ -110,7 +110,7 @@ image_name_format = {
|
|
110
110
|
create_optional_isos = False
|
111
111
|
|
112
112
|
createiso_skip = [
|
113
|
-
('^(BaseOS|AppStream|
|
113
|
+
('^(BaseOS|AppStream|PowerTools|)$', {
|
114
114
|
'*': True,
|
115
115
|
'src':True
|
116
116
|
}),
|
@@ -129,8 +129,8 @@ restricted_volid = True
|
|
129
129
|
LOOKASIDE
|
130
130
|
variant_as_lookaside = [
|
131
131
|
('AppStream', 'BaseOS'),
|
132
|
-
('
|
133
|
-
('
|
132
|
+
('PowerTools', 'BaseOS'),
|
133
|
+
('PowerTools', 'AppStream'),
|
134
134
|
]
|
135
135
|
|
136
136
|
productimg = False
|