diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2007-10-30 14:58:03 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2007-10-30 14:58:03 -0700 |
commit | d823a59cd64acad4afcf2d5e21a2e8c95546cc95 (patch) | |
tree | 9d47361f147f96f6e43d8f8fd3fe7b0c81cfe052 /scripts/vyatta-cfg-notify | |
parent | 653569b3768a4ebfc7d111864f3d165977db37a6 (diff) | |
download | vyatta-cfg-d823a59cd64acad4afcf2d5e21a2e8c95546cc95.tar.gz vyatta-cfg-d823a59cd64acad4afcf2d5e21a2e8c95546cc95.zip |
add configuration change notification.
Diffstat (limited to 'scripts/vyatta-cfg-notify')
-rwxr-xr-x | scripts/vyatta-cfg-notify | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/vyatta-cfg-notify b/scripts/vyatta-cfg-notify new file mode 100755 index 0000000..82dc6a3 --- /dev/null +++ b/scripts/vyatta-cfg-notify @@ -0,0 +1,22 @@ +#!/bin/bash + +declare cur_tty=$(ps -o tty= |head -n1) +declare cur_uid=($(ps -o ruser= n |head -n1)) +declare cur_user=$(grep "[^:]\+:[^:]*:${cur_uid[0]}:" /etc/passwd \ + | cut -d ':' -f 1) +declare -a ulist=( $(ps -a -o args,tty,ruser n \ + | grep '^newgrp quaggavty' | cut -c 29-) ) + +for (( i = 0; i < ${#ulist[@]}; i += 2 )); do + utty=${ulist[i]} + if [ "$utty" == "$cur_tty" ]; then + continue + fi + user=$(grep "[^:]\+:[^:]*:${ulist[i+1]}:" /etc/passwd | cut -d ':' -f 1) + sudo write $user $utty <<EOF +Active configuration has been changed by user '$cur_user' on '$cur_tty'. +Please make sure you do not have conflicting changes. You can also discard +the current changes by issuing 'exit discard'. +EOF +done + |