From 4a9e28c3ec059815941c4962261272ff8fe9c1a1 Mon Sep 17 00:00:00 2001 From: Aleksey Date: Thu, 18 Jan 2024 16:39:51 +0400 Subject: [PATCH] fix --- zbootstrap.zsh | 2 +- zssh.zsh | 3 +++ zssh/zssh_boot | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 zssh.zsh diff --git a/zbootstrap.zsh b/zbootstrap.zsh index bdb6cab..a2f56be 100644 --- a/zbootstrap.zsh +++ b/zbootstrap.zsh @@ -14,4 +14,4 @@ source ${zshlibs_install}/tools.funcs.zsh source ${zshlibs_install}/zconfig.funcs.zsh source ${zshlibs_install}/global.funcs.zsh -fpath+=(${zshlibs_install}/zssh/) +source ${zshlibs_install}/zssh.zsh diff --git a/zssh.zsh b/zssh.zsh new file mode 100644 index 0000000..d61a9fb --- /dev/null +++ b/zssh.zsh @@ -0,0 +1,3 @@ +fpath+=(${zshlibs_install}/zssh/) +autoload zssh_boot + diff --git a/zssh/zssh_boot b/zssh/zssh_boot index e6ac75f..7917122 100644 --- a/zssh/zssh_boot +++ b/zssh/zssh_boot @@ -7,6 +7,10 @@ function zssh_boot() typeset -g zssh_private_configs="${zssh_ssh_dotdir}/config.d" typeset -g zssh_global_configs=${globaldots_path}/config/ssh typeset -g zssh_global_pubkeys=${globaldots_path}/keys/ssh + autoload zssh_configure zssh_process zssh_check_pubkeys zssh_enumeratenodes \ + zssh_generate_config4 zssh_generate_hostaccessconfig zssh_generate_privkey4 \ + zssh_host_info zssh_install_peers zssh_mail_pubkey2 zssh_node_info \ + zssh_publish_configs zssh_publish_pubkeys zssh_configure zssh_process }