1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/borgwarehouse_ynh.git synced 2024-09-03 18:16:17 +02:00
borgwarehouse_ynh/scripts/_common.sh

26 lines
875 B
Bash
Raw Permalink Normal View History

2023-10-17 12:13:49 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2024-06-17 18:20:08 +02:00
nodejs_version=20
2023-10-17 12:13:49 +02:00
ssh_port=$(grep -P "Port\s+\d+" /etc/ssh/sshd_config | grep -P -o "\d+")
2023-10-17 12:21:52 +02:00
main_domain=$(cat /etc/yunohost/current_host)
2023-10-17 12:13:49 +02:00
rsa_key=$(ssh-keygen -lf /etc/ssh/ssh_host_rsa_key | awk '{print $2}')
ed25519_key=$(ssh-keygen -lf /etc/ssh/ssh_host_ed25519_key | awk '{print $2}')
ecdsa_key=$(ssh-keygen -lf /etc/ssh/ssh_host_ecdsa_key | awk '{print $2}')
#=================================================
# PERSONAL HELPERS
#=================================================
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================