Update Files
This commit is contained in:
parent
8e83cf11d0
commit
4f78ddbc00
2 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ class CliArgumentsParser(name: String) : CliTargetParser(name) {
|
|||
module.configFileName,
|
||||
module.applicationFileName,
|
||||
module.submodules,
|
||||
module.reprovision
|
||||
module.reprovision,
|
||||
)
|
||||
else -> return ServerCliCommand(
|
||||
ServerType.valueOf(module.name.uppercase()),
|
||||
|
@ -79,7 +79,7 @@ class CliArgumentsParser(name: String) : CliTargetParser(name) {
|
|||
ArgType.Boolean,
|
||||
"reprovision",
|
||||
"r",
|
||||
"redo provisioning, deletes old config first"
|
||||
"redo provisioning, deletes old config first",
|
||||
)
|
||||
override fun execute() {
|
||||
super.configFileName = cliConfigFileName?.let { ConfigFileName(it) }
|
||||
|
|
|
@ -11,7 +11,7 @@ class K3sCliCommand(
|
|||
configFileName: ConfigFileName?,
|
||||
val applicationFileName: ApplicationFileName?,
|
||||
val submodules: List<String>? = null,
|
||||
val reprovision: Reprovision = false
|
||||
val reprovision: Reprovision = false,
|
||||
) :
|
||||
ServerCliCommand(
|
||||
serverType, target, configFileName
|
||||
|
|
Loading…
Reference in a new issue