From d823a59cd64acad4afcf2d5e21a2e8c95546cc95 Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Tue, 30 Oct 2007 14:58:03 -0700 Subject: add configuration change notification. --- scripts/vyatta-cfg-notify | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 scripts/vyatta-cfg-notify (limited to 'scripts') 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 <