In Fedora CoreOS we are still including iptables-legacy for now [1] and since you can't really overwrite an `exclude-packages` entry it means we can't update our git submodule. We are working to get away from using a git submodule [2], but I'd like to get ours updated in the mean time. [1] https://github.com/coreos/fedora-coreos-tracker/issues/1818 [2] https://github.com/coreos/fedora-coreos-tracker/issues/1861
4 lines
110 B
Bash
Executable file
4 lines
110 B
Bash
Executable file
#!/bin/bash
|
|
set -xeuo pipefail
|
|
output=$(rpm -q iptables-legacy || true)
|
|
grep "is not installed" <<< "$output"
|