forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change podman connection list to use default field
Stop using "*" to indicate default. Add default field to make it more obvios and the json field more machine usable. Fixes: containers#12019 Signed-off-by: Daniel J Walsh <[email protected]>
- Loading branch information
Showing
5 changed files
with
15 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,14 +23,14 @@ Valid placeholders for the Go template listed below: | |
| *.Name* | Connection Name/Identifier | | ||
| *.Identity* | Path to file containing SSH identity | | ||
| *.URI* | URI to podman service. Valid schemes are ssh://[user@]*host*[:port]*Unix domain socket*[?secure=True], unix://*Unix domain socket*, and tcp://localhost[:*port*] | | ||
|
||
An asterisk is appended to the default connection. | ||
| *.Default* | Indicates whether connection is the default | | ||
|
||
## EXAMPLE | ||
``` | ||
$ podman system connection list | ||
Name URI Identity | ||
devl ssh://[email protected]/run/podman/podman.sock ~/.ssh/id_rsa | ||
Name URI Identity Default | ||
devl ssh://[email protected]:/run/podman/podman.sock ~/.ssh/id_rsa True | ||
devl ssh://[email protected]:/run/user/1000/podman/podman.sock ~/.ssh/id_rsa False | ||
``` | ||
## SEE ALSO | ||
podman-system(1) , containers.conf(5) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,8 @@ The user will be prompted for the ssh login password or key file pass phrase as | |
## EXAMPLE | ||
``` | ||
$ podman system connection list | ||
Name URI Identity | ||
devl ssh://[email protected]/run/podman/podman.sock ~/.ssh/id_rsa | ||
Name URI Identity Default | ||
devl ssh://[email protected]/run/podman/podman.sock ~/.ssh/id_rsa true | ||
``` | ||
## SEE ALSO | ||
podman-system(1) , containers.conf(5) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters