From 3249bc34e9897fbb6b7cfb83e655a5b7c9d9ddcf Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 13 May 2018 14:16:13 +0200 Subject: T631: small bugfix in config parsind for deny-users --- src/conf-mode/vyos-config-ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/conf-mode/vyos-config-ssh.py b/src/conf-mode/vyos-config-ssh.py index 6a520fc2c..1605dcd74 100755 --- a/src/conf-mode/vyos-config-ssh.py +++ b/src/conf-mode/vyos-config-ssh.py @@ -179,7 +179,7 @@ def get_config(): ssh.setdefault('allow_groups', groups) - if conf.exists('access-control deny-groups'): + if conf.exists('access-control deny-users'): # Retrieve ',' separated list for denied users and convert it to a list. # The current VyOS CLI implementation should be improved to rather use multi nodes # instead of a ',' separated input. -- cgit v1.2.3