summaryrefslogtreecommitdiff
path: root/src/completion
diff options
context:
space:
mode:
authorWilliam Hughes <will@willhughes.name>2022-09-26 16:07:55 +1300
committerWilliam Hughes <will@willhughes.name>2022-09-28 17:33:07 +1300
commit3930be3b878643034fcfa99d9f428a0d38daec35 (patch)
treeebd1d94d11ce94cf7bd76eab5539db04dc96c136 /src/completion
parent53bd9fe11e449c66656fef9cb72084d5d0800a75 (diff)
downloadvyos-1x-3930be3b878643034fcfa99d9f428a0d38daec35.tar.gz
vyos-1x-3930be3b878643034fcfa99d9f428a0d38daec35.zip
conserver: T4717: Support for setting a name for console-server devices
This adds a new 'alias' property to the console-server device definition to allow users to connect to a console using a human-readable name rather than just the device name. For a configuration like: service { console-server { device ttyUSB0 { speed 115200 alias my-server } } } Users can connect either by doing `connect console ttyUSB0`, or `connect console my-server`. Names: * Must be unique * Are limited to 128 characters * Are optional - if not specified, only the `connect console ttyX` form can be used
Diffstat (limited to 'src/completion')
-rwxr-xr-xsrc/completion/list_consoles.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/completion/list_consoles.sh b/src/completion/list_consoles.sh
new file mode 100755
index 000000000..52278c4cb
--- /dev/null
+++ b/src/completion/list_consoles.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+# For lines like `aliases "foo";`, regex matches everything between the quotes
+grep -oP '(?<=aliases ").+(?=";)' /run/conserver/conserver.cf \ No newline at end of file