provisioning/taskservs/webhook/default/prepare
2025-09-22 23:11:41 +01:00

29 lines
840 B
Plaintext
Executable File

#!/usr/bin/env nu
# Info: Prepare for webhook installation
# Author: JesusPerezLorenzo
# Release: 1.0.2
# Date: 19-11-2023
use lib_provisioning/cmd/env.nu *
use lib_provisioning/cmd/lib.nu *
use lib_provisioning/utils/ui.nu *
print $"(_ansi green_bold)Webhoo(_ansi reset) with ($env.PROVISIONING_VARS) "
let defs = load_defs
#sops_cmd "decrypt" /wuwei/repo-cnz/klab/basecamp/.keys.k | save --force /tmp/ky.k
let ssh_keys = ($defs.taskserv.repo_ssh_key | str replace "~" $env.HOME | str trim)
if $ssh_keys != "" {
let target_path = $env.PROVISIONING_WK_ENV_PATH
^mkdir -p $"($target_path)/.ssh"
for key in ($ssh_keys | split row " ") {
log_debug $"on ($key)"
if ($key | path exists) { cp $key $"($target_path)/.ssh" }
if ($"($key).pub" | path exists) { cp $"($key).pub" $"($target_path)/.ssh" }
}
}