diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-10 21:35:07 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-10 21:35:07 +0200 |
commit | 556e03922f78f8e258c6d6630ad47569be376e11 (patch) | |
tree | f2ea3758029b5c93f8777df168684286d693448d /interface-definitions/include | |
parent | 1be388a66b0c1ed707d4d8cf09cff069a835b7f7 (diff) | |
download | vyos-1x-556e03922f78f8e258c6d6630ad47569be376e11.tar.gz vyos-1x-556e03922f78f8e258c6d6630ad47569be376e11.zip |
xml: ssh: move user/group definition to includable files
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/ssh-group.xml.i | 12 | ||||
-rw-r--r-- | interface-definitions/include/ssh-user.xml.i | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/interface-definitions/include/ssh-group.xml.i b/interface-definitions/include/ssh-group.xml.i new file mode 100644 index 000000000..9c8b8692f --- /dev/null +++ b/interface-definitions/include/ssh-group.xml.i @@ -0,0 +1,12 @@ +<!-- include start from ssh-group.xml.i --> +<leafNode name="group"> + <properties> + <help>Allow members of a group to login</help> + <constraint> + <regex>[a-z_][a-z0-9_-]{1,31}[$]?</regex> + </constraint> + <constraintErrorMessage>illegal characters or more than 32 characters</constraintErrorMessage> + <multi/> + </properties> +</leafNode> +<!-- include end --> diff --git a/interface-definitions/include/ssh-user.xml.i b/interface-definitions/include/ssh-user.xml.i new file mode 100644 index 000000000..677602dd8 --- /dev/null +++ b/interface-definitions/include/ssh-user.xml.i @@ -0,0 +1,12 @@ +<!-- include start from ssh-user.xml.i --> +<leafNode name="user"> + <properties> + <help>Allow specific users to login</help> + <constraint> + <regex>[a-z_][a-z0-9_-]{1,31}[$]?</regex> + </constraint> + <constraintErrorMessage>illegal characters or more than 32 characters</constraintErrorMessage> + <multi/> + </properties> +</leafNode> +<!-- include end --> |