diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-08-20 03:41:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 03:41:11 +0200 |
commit | dc131951b5f903b698f624a0234560d7a822ff21 (patch) | |
tree | 553fdce3e4776e5b84f4c8710f7af6cf9a1635fe /src/systemctl | |
parent | 6c35ea5ef0231d519ff24d43a57a72cebab6a121 (diff) | |
parent | 43689840a2d588fbfd2d01be36e5a4465f276dcb (diff) | |
download | systemd-dc131951b5f903b698f624a0234560d7a822ff21.tar.gz |
Merge pull request #18385 from kinvolk/mauricio/restrict-network-interfaces
Add RestrictNetworkInterfaces=
Diffstat (limited to 'src/systemctl')
-rw-r--r-- | src/systemctl/systemctl-show.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl-show.c b/src/systemctl/systemctl-show.c index b325d44c5e..d008c4172a 100644 --- a/src/systemctl/systemctl-show.c +++ b/src/systemctl/systemctl-show.c @@ -1023,7 +1023,7 @@ static int print_property(const char *name, const char *expected_value, sd_bus_m return 1; - } else if (STR_IN_SET(name, "SystemCallFilter", "SystemCallLog", "RestrictAddressFamilies")) { + } else if (STR_IN_SET(name, "SystemCallFilter", "SystemCallLog", "RestrictAddressFamilies", "RestrictNetworkInterfaces")) { _cleanup_strv_free_ char **l = NULL; int allow_list; |