starter-kit/bots/machine/machine_core/constants.py
2019-08-22 16:05:13 +00:00

35 lines
1.3 KiB
Python

# This file is part of Cockpit.
#
# Copyright (C) 2013 Red Hat, Inc.
#
# Cockpit is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Cockpit 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
import os
# Images which are Atomic based
ATOMIC_IMAGES = ["rhel-atomic", "fedora-atomic", "continuous-atomic"]
MACHINE_DIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
BOTS_DIR = os.path.dirname(MACHINE_DIR)
BASE_DIR = os.path.dirname(BOTS_DIR)
TEST_DIR = os.path.join(BASE_DIR, "test")
GIT_DIR = os.path.join(BASE_DIR, ".git")
IMAGES_DIR = os.path.join(BOTS_DIR, "images")
SCRIPTS_DIR = os.path.join(IMAGES_DIR, "scripts")
DEFAULT_IDENTITY_FILE = os.path.join(MACHINE_DIR, "identity")
TEST_OS_DEFAULT = "fedora-30"
DEFAULT_IMAGE = os.environ.get("TEST_OS", TEST_OS_DEFAULT)