diff options
Diffstat (limited to 'scripts/vyatta-show-current-user')
-rwxr-xr-x | scripts/vyatta-show-current-user | 20 |
1 files changed, 20 insertions, 0 deletions
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 |