Skip to content

Commit

Permalink
report OCP on OSP
Browse files Browse the repository at this point in the history
Change-Id: I303ed51fe5414bc11e0864351246a4665129b57e
  • Loading branch information
iranzo committed Oct 2, 2018
1 parent b6b956e commit ed1633d
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions citellusclient/plugins/core/sysinfo/openshift/ocp-on-osp.sh
@@ -0,0 +1,32 @@
#!/bin/bash

# Copyright (C) 2018 Pablo Iranzo Gómez <Pablo.Iranzo@gmail.com>

# 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 <http://www.gnu.org/licenses/>.

# 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}

0 comments on commit ed1633d

Please sign in to comment.