allow service names to start with a number (synchronizing with the check in get_port_...
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Thu, 18 Feb 2010 23:25:29 +0000 (18:25 -0500)
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Thu, 18 Feb 2010 23:25:29 +0000 (18:25 -0500)
src/monkeysphere-host

index d89febb690ed92c1c84f1f27eaa0f446b63fce1b..12e7bad468ff3ab6dfdf316f505924f32d1bd7d7 100755 (executable)
@@ -147,7 +147,7 @@ Service names should use fully-qualified domain names (FQDN), but the
 domain name you chose appears to only have the local part.  For
 example: don't use 'ssh://foo' ; use 'ssh://foo.example.com' instead."
 
-    [[ "$name" =~ ^[a-z]([a-z0-9-]*[a-z0-9])?://[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.|((\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)+))(:[1-9][0-9]{0,4})?$ ]] || \
+    [[ "$name" =~ ^[a-z0-9]([a-z0-9-]*[a-z0-9])?://[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.|((\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)+))(:[1-9][0-9]{0,4})?$ ]] || \
         failure "Not a valid service name: '$name'
 
 Service names look like <scheme>://full.example.com[:<portnumber>],