zshlibs/zssh/zssh_boot

13 lines
419 B
Plaintext
Raw Normal View History

2024-01-18 12:18:03 +00:00
function zssh_boot()
{
zshlibs_log zssh "zssh is booting up
----------------------------"
typeset -g zssh_ssh_dotdir="${HOME}/.ssh"
typeset -g zssh_private_keys="${zssh_ssh_dotdir}/keystore"
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
zssh_configure
zssh_process
}