2021-01-20 20:16:15 +00:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
|
|
|
spectool -fg containers-common.spec
|
|
|
|
|
|
|
|
echo "Changing storage.conf..."
|
|
|
|
sed -i -e 's/^driver.*=.*/driver = "overlay"/' -e 's/^mountopt.*=.*/mountopt = "nodev,metacopy=on"/' \
|
|
|
|
storage.conf
|
|
|
|
|
2021-01-20 20:48:21 +00:00
|
|
|
echo "Changing seccomp.json..."
|
2021-01-20 20:16:15 +00:00
|
|
|
[ `grep "keyctl" seccomp.json | wc -l` == 0 ] && sed -i '/\"kill\",/i \
|
|
|
|
"keyctl",' seccomp.json
|
|
|
|
sed -i '/\"socketcall\",/i \
|
|
|
|
"socket",' seccomp.json
|
|
|
|
|
|
|
|
echo "Changing registries.conf..."
|
|
|
|
sed -i 's/^#.*unqualified-search-registries.*=.*/unqualified-search-registries = ["registry.fedoraproject.org", "registry.access.redhat.com", "registry.centos.org", "docker.io"]/g' \
|
|
|
|
registries.conf
|
|
|
|
|