2010-08-17 Junichi Satoh <junichi@rworks.jp>
* unix/pandora_agent_daemon, unix/tentacle_client: Added support for Solaris virtualization, "zone". git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3144 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
1bdd0e7ebe
commit
a7f9e8c5d8
|
@ -1,3 +1,8 @@
|
||||||
|
2010-08-17 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* unix/pandora_agent_daemon, unix/tentacle_client: Added support for
|
||||||
|
Solaris virtualization, "zone".
|
||||||
|
|
||||||
2010-08-04 Dario Rodriguez <dario.rodriguez@artica.es>
|
2010-08-04 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||||
|
|
||||||
* win32/bin/collections: Added collections directory.
|
* win32/bin/collections: Added collections directory.
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2010-08-17 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* pandora_agent_daemon, tentacle_client: Added support for Solaris
|
||||||
|
virtualization, "zone".
|
||||||
|
|
||||||
2010-08-11 Ramon Novoa <rnovoa@artica.es>
|
2010-08-11 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
* pandora_agent: Fixed collection issues related to the agent. See
|
* pandora_agent: Fixed collection issues related to the agent. See
|
||||||
|
|
|
@ -34,9 +34,26 @@ pidof_pandora () {
|
||||||
if [ $OS_NAME = "HP-UX" ]
|
if [ $OS_NAME = "HP-UX" ]
|
||||||
then
|
then
|
||||||
PANDORA_PID=`ps -ex | grep "$DAEMON $PANDORA_PATH" | grep -v grep | head -1 | awk '{ print $1 }'`
|
PANDORA_PID=`ps -ex | grep "$DAEMON $PANDORA_PATH" | grep -v grep | head -1 | awk '{ print $1 }'`
|
||||||
|
else
|
||||||
|
if [ "$OS_NAME" = "SunOS" ]
|
||||||
|
then
|
||||||
|
ZONENAME_CMD="/bin/zonename"
|
||||||
|
if [ -x $ZONENAME_CMD ]
|
||||||
|
then
|
||||||
|
ZONE=`$ZONENAME_CMD`
|
||||||
|
else
|
||||||
|
ZONE=
|
||||||
|
fi
|
||||||
|
if [ "$ZONE" = "global" ]
|
||||||
|
then
|
||||||
|
PANDORA_PID=`ps -f -z global | grep "$DAEMON $PANDORA_PATH" | grep -v grep | head -1 | awk '{ print $2 }'`
|
||||||
else
|
else
|
||||||
PANDORA_PID=`ps -Af | grep "$DAEMON $PANDORA_PATH" | grep -v grep | head -1 | awk '{ print $2 }'`
|
PANDORA_PID=`ps -Af | grep "$DAEMON $PANDORA_PATH" | grep -v grep | head -1 | awk '{ print $2 }'`
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
PANDORA_PID=`ps -Af | grep "$DAEMON $PANDORA_PATH" | grep -v grep | head -1 | awk '{ print $2 }'`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo $PANDORA_PID
|
echo $PANDORA_PID
|
||||||
}
|
}
|
||||||
|
|
|
@ -271,9 +271,11 @@ sub parse_options {
|
||||||
sub start_client {
|
sub start_client {
|
||||||
|
|
||||||
# Connect to server
|
# Connect to server
|
||||||
|
# Note: "Type => SOCK_STREAM" should be clearly defined for Solaris zone.
|
||||||
$t_socket = IO::Socket::INET->new (
|
$t_socket = IO::Socket::INET->new (
|
||||||
PeerAddr => $t_address,
|
PeerAddr => $t_address,
|
||||||
PeerPort => $t_port,
|
PeerPort => $t_port,
|
||||||
|
Type => SOCK_STREAM,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (! defined ($t_socket)) {
|
if (! defined ($t_socket)) {
|
||||||
|
|
Loading…
Reference in New Issue