diff options
Diffstat (limited to 'lib/leap_cli/commands')
-rw-r--r-- | lib/leap_cli/commands/node.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/node.rb b/lib/leap_cli/commands/node.rb index 87718e9..6a60c45 100644 --- a/lib/leap_cli/commands/node.rb +++ b/lib/leap_cli/commands/node.rb @@ -22,7 +22,7 @@ module LeapCli; module Commands # argument sanity checks name = args.first assert! name, 'No <node-name> specified.' - assert! name =~ /^[0-9a-z_-]+$/, "illegal characters used in node name '#{name}'" + assert! name =~ /^[0-9a-z-]+$/, "illegal characters used in node name '#{name}'" assert_files_missing! [:node_config, node.name] # create and seed new node |