diff options
author | Mauricio Vásquez <mauricio@kinvolk.io> | 2021-01-21 11:20:16 -0500 |
---|---|---|
committer | Mauricio Vásquez <mauricio@kinvolk.io> | 2021-08-19 07:25:01 -0500 |
commit | 7e959a73af99292179ff82e81c6dd4a322e7bb5e (patch) | |
tree | 6999bbfe1c32f13a7bdd53f201d23b8e52b97d96 /src/systemctl | |
parent | 00d6fceeb3724bbe8fa0e0138bb23954c1d44642 (diff) | |
download | systemd-7e959a73af99292179ff82e81c6dd4a322e7bb5e.tar.gz |
systemctl: show RestrictNetworkInterfaces= in systemctl show
Signed-off-by: Mauricio Vásquez <mauricio@kinvolk.io>
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; |