From ed1633dfe2d85811dc01bc752453b32fb9372ab2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Iranzo=20G=C3=B3mez?= Date: Tue, 2 Oct 2018 22:22:06 +0200 Subject: [PATCH] report OCP on OSP Change-Id: I303ed51fe5414bc11e0864351246a4665129b57e --- .../core/sysinfo/openshift/ocp-on-osp.sh | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 citellusclient/plugins/core/sysinfo/openshift/ocp-on-osp.sh diff --git a/citellusclient/plugins/core/sysinfo/openshift/ocp-on-osp.sh b/citellusclient/plugins/core/sysinfo/openshift/ocp-on-osp.sh new file mode 100755 index 000000000..6e2f0e014 --- /dev/null +++ b/citellusclient/plugins/core/sysinfo/openshift/ocp-on-osp.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# Copyright (C) 2018 Pablo Iranzo Gómez + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# long_name: Detects OCP on OSP +# description: Detects OCP on OSP +# priority: 0 + +# Load common functions +[ -f "${CITELLUS_BASE}/common-functions.sh" ] && . "${CITELLUS_BASE}/common-functions.sh" + +if [[ "$(discover_ocp_version)" != 0 ]]; then + if [[ "$(virt_type)" == "OpenStack" ]]; then + echo "OCP running on top of OSP" >&2 + exit ${RC_OKAY} + fi +fi +echo $"Not running OCP or not on OSP" >&2 +exit ${RC_SKIPPED}