Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

glpi / pkg / init @ 2fd8023e

History | View | Annotate | Download (133 Bytes)

1
#!/bin/sh
2

    
3
pid_list=`ps ax | grep vigilo-vigirrd | grep -v grep | awk '{print $1}'`
4

    
5
for pid in $pid_list
6
do
7
    kill -HUP $pid
8
done