metal/mtce/src/hwmon/scripts/show_hp360
Jim Gauld 6a5e10492c Decouple Guest-server/agent from stx-metal
This decouples the build and packaging of guest-server, guest-agent from
mtce, by splitting guest component into stx-nfv repo.

This leaves existing C++ code, scripts, and resource files untouched,
so there is no functional change. Code refactoring is beyond the scope
of this update.

Makefiles were modified to include devel headers directories
/usr/include/mtce-common and /usr/include/mtce-daemon.
This ensures there is no contamination with other system headers.

The cgts-mtce-common package is renamed and split into:
- repo stx-metal: mtce-common, mtce-common-dev
- repo stx-metal: mtce
- repo stx-nfv: mtce-guest
- repo stx-ha: updates package dependencies to mtce-pmon for
  service-mgmt, sm, and sm-api

mtce-common:
- contains common and daemon shared source utility code

mtce-common-dev:
- based on mtce-common, contains devel package required to build
  mtce-guest and mtce
- contains common library archives and headers

mtce:
- contains components: alarm, fsmon, fsync, heartbeat, hostw, hwmon,
  maintenance, mtclog, pmon, public, rmon

mtce-guest:
- contains guest component guest-server, guest-agent

Story: 2002829
Task: 22748

Change-Id: I9c7a9b846fd69fd566b31aa3f12a043c08f19f1f
Signed-off-by: Jim Gauld <james.gauld@windriver.com>
2018-09-18 17:15:08 -04:00

79 lines
1.4 KiB
Bash

#!/bin/bash
#
# Copyright (c) 2015 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
rc=0
if [ "$1" == "/system1" -a "$2" == "name" ] ; then
echo ""
echo "status=0"
echo "status_tag=COMMAND COMPLETED"
echo "Wed Aug 5 11:56:35 2015"
echo ""
echo ""
echo ""
echo "/system1"
echo " Properties"
echo " name=ProLiant DL360 Gen9"
echo " Verbs"
echo " cd version exit show set"
echo ""
echo ""
echo ""
elif [ "$0" == "/usr/sbin/stop" -a "$1" == "/system1" ] ; then
echo "Server powering off ......."
echo ""
shutdown -P -h -time now
elif [ "$0" == "/usr/sbin/reset" -a "$1" == "/system1" ] ; then
echo "Server reset"
echo ""
reboot
elif [ "$1" == "" ] ; then
echo ""
echo "status=0"
echo "status_tag=COMMAND COMPLETED"
echo "Tue Aug 18 16:44:29 2015"
echo ""
echo ""
echo ""
echo "/"
echo " Targets"
echo " system1"
echo " map1"
echo " Properties"
echo " Verbs"
echo " cd version exit show"
echo ""
else
echo ""
echo "status=2"
echo "status_tag=COMMAND PROCESSING FAILED"
echo "error_tag=INVALID OPTION"
echo "Wed Aug 5 12:10:46 2015"
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
rc=1
fi
exit $rc