Clean up 404 KCL references (99.75% complete): - Rename kcl_* variables to schema_*/nickel_* (kcl_path→schema_path, etc.) - Update functions: parse_kcl_file→parse_nickel_file - Update env vars: KCL_MOD_PATH→NICKEL_IMPORT_PATH - Fix cli/providers-install: add has_nickel and nickel_version variables - Correct import syntax: .nickel.→.ncl. - Update 57 files across core, CLI, config, and utilities Configure pre-commit hooks: - Activate: nushell-check, nickel-typecheck, markdownlint - Comment out: Rust hooks (fmt, clippy, test), check-yaml Testing: - Module discovery: 9 modules (6 providers, 1 taskserv, 2 clusters) ✅ - Syntax validation: 15 core files ✅ - Pre-commit hooks: all passing ✅
62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
|
|
|
|
#use ssh.nu *
|
|
export def cluster_get_file [
|
|
settings: record
|
|
cluster: record
|
|
server: record
|
|
live_ip: string
|
|
req_sudo: bool
|
|
local_mode: bool
|
|
]: nothing -> bool {
|
|
let target_path = ($cluster.target_path | default "")
|
|
if $target_path == "" {
|
|
_print $"🛑 No (_ansi red_bold)target_path(_ansi reset) found in ($server.hostname) cluster ($cluster.name)"
|
|
return false
|
|
}
|
|
let source_path = ($cluster.soruce_path | default "")
|
|
if $source_path == "" {
|
|
_print $"🛑 No (_ansi red_bold)source_path(_ansi reset) found in ($server.hostname) cluster ($cluster.name)"
|
|
return false
|
|
}
|
|
if $local_mode {
|
|
let res = (^cp $source_path $target_path | combine)
|
|
if $res.exit_code != 0 {
|
|
_print $"🛑 Error get_file [ local-mode ] (_ansi red_bold)($source_path) to ($target_path)(_ansi reset) in ($server.hostname) cluster ($cluster.name)"
|
|
_print $res.stdout
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
let ip = if $live_ip != "" {
|
|
$live_ip
|
|
} else {
|
|
#use ../../../providers/prov_lib/middleware.nu mw_get_ip
|
|
(mw_get_ip $settings $server $server.liveness_ip false)
|
|
}
|
|
let ssh_key_path = ($server.ssh_key_path | default "")
|
|
if $ssh_key_path == "" {
|
|
_print $"🛑 No (_ansi red_bold)ssh_key_path(_ansi reset) found in ($server.hostname) cluster ($cluster.name)"
|
|
return false
|
|
}
|
|
if not ($ssh_key_path | path exists) {
|
|
_print $"🛑 Error (_ansi red_bold)($ssh_key_path)(_ansi reset) not found for ($server.hostname) cluster ($cluster.name)"
|
|
return false
|
|
}
|
|
mut cmd = if $req_sudo { "sudo" } else { "" }
|
|
let wk_path = $"/home/($env.SSH_USER)/($source_path| path basename)"
|
|
$cmd = $"($cmd) cp ($source_path) ($wk_path); sudo chown ($env.SSH_USER) ($wk_path)"
|
|
let wk_path = $"/home/($env.SSH_USER)/($source_path | path basename)"
|
|
let res = (ssh_cmd $settings $server false $cmd $ip )
|
|
if not $res { return false }
|
|
if not (scp_from $settings $server $wk_path $target_path $ip ) {
|
|
return false
|
|
}
|
|
let rm_cmd = if $req_sudo {
|
|
$"sudo rm -f ($wk_path)"
|
|
} else {
|
|
$"rm -f ($wk_path)"
|
|
}
|
|
return (ssh_cmd $settings $server false $rm_cmd $ip )
|
|
}
|