diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-06 21:32:29 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-07-06 21:32:29 -0700 |
commit | 0e5441219e9e3ca70bb11bd91622cd8028141475 (patch) | |
tree | 7098c965f80e6b448b41772b3f50bdf5dca9a7d5 | |
parent | 187f457e33f40c4f370700b5dd22d0d2de903450 (diff) | |
download | vyatta-op-0e5441219e9e3ca70bb11bd91622cd8028141475.tar.gz vyatta-op-0e5441219e9e3ca70bb11bd91622cd8028141475.zip |
Add show login commands
Bug 5554
Add CLI interface to user state commands (who, id, etc)
-rw-r--r-- | Makefile.am | 1 | ||||
-rwxr-xr-x | scripts/vyatta-show-current-user | 20 | ||||
-rw-r--r-- | templates/show/login/groups/node.def | 2 | ||||
-rw-r--r-- | templates/show/login/level/node.def | 2 | ||||
-rw-r--r-- | templates/show/login/node.def | 2 | ||||
-rw-r--r-- | templates/show/login/user/node.def | 2 |
6 files changed, 29 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 0a89edb..589bb2c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,6 +28,7 @@ bin_SCRIPTS += scripts/rename-image.pl bin_SCRIPTS += scripts/show-image-storage.pl bin_SCRIPTS += scripts/node-exists.pl bin_SCRIPTS += scripts/vyatta-remote-copy.pl +bin_SCRIPTS += scripts/vyatta-show-current-user sbin_SCRIPTS = scripts/dhcpv6-client-show-leases.pl diff --git a/scripts/vyatta-show-current-user b/scripts/vyatta-show-current-user new file mode 100755 index 0000000..87c5543 --- /dev/null +++ b/scripts/vyatta-show-current-user @@ -0,0 +1,20 @@ +#! /bin/bash +# +# Simple script for "show login" + +echo -n "login : " ; who -m + +if [ -n "$VYATTA_USER_LEVEL_DIR" ] +then + echo -n "level : " + basename $VYATTA_USER_LEVEL_DIR +fi + +echo -n "user : " ; id -un +echo -n "groups : " ; id -gn + +if id -Z >/dev/null 2>&1 +then + echo -n "context : " + id -Z +fi diff --git a/templates/show/login/groups/node.def b/templates/show/login/groups/node.def new file mode 100644 index 0000000..953f866 --- /dev/null +++ b/templates/show/login/groups/node.def @@ -0,0 +1,2 @@ +help: Show current login group information +run: id -gn diff --git a/templates/show/login/level/node.def b/templates/show/login/level/node.def new file mode 100644 index 0000000..a732234 --- /dev/null +++ b/templates/show/login/level/node.def @@ -0,0 +1,2 @@ +help: Show current login level +run: [ -n "$VYATTA_USER_LEVEL_DIR" ] && basename $VYATTA_USER_LEVEL_DIR diff --git a/templates/show/login/node.def b/templates/show/login/node.def new file mode 100644 index 0000000..02061ef --- /dev/null +++ b/templates/show/login/node.def @@ -0,0 +1,2 @@ +help: Show current login credentials +run: ${vyatta_bindir}/vyatta-show-current-user diff --git a/templates/show/login/user/node.def b/templates/show/login/user/node.def new file mode 100644 index 0000000..eae80c6 --- /dev/null +++ b/templates/show/login/user/node.def @@ -0,0 +1,2 @@ +help: Show current login user id +run: id -un |