mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-24 16:54:26 +01:00
Remove `kata-` prefix from options `kata-config` and `kata-show-default-config-paths`. Fixes #1011 Signed-off-by: Daniel Knittl-Frank <knittl89+git@googlemail.com>
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
//
|
|
// Copyright (c) 2018-2019 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// WARNING: This file is auto-generated - DO NOT EDIT!
|
|
//
|
|
// Note that some variables are "var" to allow them to be modified
|
|
// by the tests.
|
|
package main
|
|
|
|
// name is the name of the runtime
|
|
const name = "@RUNTIME_NAME@"
|
|
|
|
// name of the project
|
|
const project = "@PROJECT_NAME@"
|
|
|
|
// prefix used to denote non-standard CLI commands and options.
|
|
const projectPrefix = "@PROJECT_TYPE@"
|
|
|
|
// original URL for this project
|
|
const projectURL = "@PROJECT_URL@"
|
|
|
|
// Project URL's organisation name
|
|
const projectORG = "@PROJECT_ORG@"
|
|
|
|
const defaultRootDirectory = "@PKGRUNDIR@"
|
|
|
|
// commit is the git commit the runtime is compiled from.
|
|
var commit = "@COMMIT@"
|
|
|
|
// version is the runtime version.
|
|
var version = "@VERSION@"
|
|
|
|
// Default config file used by stateless systems.
|
|
var defaultRuntimeConfiguration = "@CONFIG_PATH@"
|
|
|
|
// Alternate config file that takes precedence over
|
|
// defaultRuntimeConfiguration.
|
|
var defaultSysConfRuntimeConfiguration = "@SYSCONFIG@"
|