parent
044b8da55a
commit
5fc7d033f9
288 changed files with 13040 additions and 1 deletions
35
bots/machine/machine_core/constants.py
Normal file
35
bots/machine/machine_core/constants.py
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue