diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-02 12:49:26 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-02 19:34:30 +0200 |
commit | 99440fc005d734d602fb9cd5b546e320c9b1e19b (patch) | |
tree | cf7c79956600861917034dac6f2b4bc4d45f9ced /interface-definitions/ssh.xml.in | |
parent | 939bbaa72db37010b4562b727778d06f371725ff (diff) | |
download | vyos-1x-99440fc005d734d602fb9cd5b546e320c9b1e19b.tar.gz vyos-1x-99440fc005d734d602fb9cd5b546e320c9b1e19b.zip |
Makefile: fix logic to detect empty "node.def" files
Commit 5b22ebae ("T3170: check if any generated node.def files are empty") added
an initial test to find empty node.def files created by build-command-templates
or build-command-op-templates.
The problem was that GNU find always returns 0, thus the condition to bail out
on error was always met. This has been corrected to return false on hits only.
Diffstat (limited to 'interface-definitions/ssh.xml.in')
-rw-r--r-- | interface-definitions/ssh.xml.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/interface-definitions/ssh.xml.in b/interface-definitions/ssh.xml.in index c2d514b09..6faef9bd5 100644 --- a/interface-definitions/ssh.xml.in +++ b/interface-definitions/ssh.xml.in @@ -2,6 +2,9 @@ <!--SSH configuration --> <interfaceDefinition> <node name="service"> + <properties> + <help>System services</help> + </properties> <children> <node name="ssh" owner="${vyos_conf_scripts_dir}/ssh.py"> <properties> |