We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e7066 commit 5760ad6Copy full SHA for 5760ad6
sdk_container/src/third_party/coreos-overlay/coreos/config/env/sys-libs/libsemanage
@@ -0,0 +1,12 @@
1
+# A hack to modify semanage.conf before it gets copied by
2
+# multilib_copy_sources.
3
+if ! declare -pf flatcar_hacked_multilib_copy_sources >/dev/null 2>&1; then
4
+ eval "$(echo 'flatcar_hacked_multilib_copy_sources()'; declare -pf multilib_copy_sources | tail -n +2)"
5
+fi
6
+multilib_copy_sources() {
7
+ # Enable compression in semanage.conf
8
+ sed -i \
9
+ -e 's/^\(bzip-blocksize\)=0/\1=1/' \
10
+ "${S}/src/semanage.conf"
11
+ flatcar_hacked_multilib_copy_sources "${@}"
12
+}
0 commit comments