38 lines
2.7 KiB
Bash
38 lines
2.7 KiB
Bash
#!/bin/bash
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
CONFIG_DEB_INSTALL_DEFAULT_CA_SERVER="192.168.0.110"
|
|
CONFIG_DEB_INSTALL_DEFAULT_CA_WILDCARD="*.server.home"
|
|
CONFIG_DEB_INSTALL_DEFAULT_CA_SERVICES="gitea nginx apache2 mysql postgresql jellyfin"
|
|
CONFIG_DEB_INSTALL_DEFAULT_CA_CRON="STEP-CA-RENEWAL"
|
|
CONFIG_DEB_INSTALL_CRON_UPDATE="CONFIG_DEB_INSTALL_CRON_UPDATE"
|
|
|
|
CONFIG_DEB_INSTALL_JSON='[
|
|
{"id": "git_pkg", "label": "Installer Git", "type": "pkg", "params": "git"},
|
|
{"id": "jq_pkg", "label": "Installer JQ", "type": "pkg", "params": "jq"},
|
|
{"id": "ncdu_pkg", "label": "Installer NCDU", "type": "pkg", "params": "ncdu"},
|
|
{"id": "htop_pkg", "label": "Installer HTOP", "type": "pkg", "params": "htop"},
|
|
{"id": "msmtp_pkg", "label": "Installer MSMTP", "type": "pkg", "params": "msmtp"},
|
|
{"id": "net-tools_pkg", "label": "Installer net-tools", "type": "pkg", "params": "net-tools"},
|
|
{"id": "zabbix", "label": "Installer Zabbix Agent", "type": "sys", "params": "zabbix"},
|
|
{"id": "apparmor_pkg", "label": "Installer AppArmor (Paquets)", "type": "pkg", "params": "apparmor"},
|
|
{"id": "fail2ban_pkg", "label": "Installer Fail2Ban", "type": "pkg", "params": "fail2ban"},
|
|
{"id": "ufw_pkg", "label": "Installer Firewall (UFW)", "type": "pkg", "params": "ufw"},
|
|
{"id": "script_update", "label": "Installer script de mise à jour automatique", "type": "sys", "params": "script_update"},
|
|
{"id": "cert_install", "label": "Installer le certificat wildcard auto", "type": "sys", "params": "cert_install"},
|
|
{"id": "ipv6", "label": "Désactiver IPv6", "type": "sys", "params": "ipv6"},
|
|
{"id": "motd", "label": "Désactiver les messages MOTD", "type": "sys", "params": "motd"},
|
|
{"id": "mail", "label": "Configurer ADMIN_MAIL", "type": "sys", "params": "mail"},
|
|
{"id": "gen_ssh_key", "label": "Creer une clé RSA pour SSH", "type": "sys", "params": "gen_ssh_key"},
|
|
{"id": "hostname", "label": "Changer le Hostname", "type": "sys", "params": "hostname"},
|
|
{"id": "static_ip", "label": "Configurer IP Statique (eth0)", "type": "sys", "params": "static_ip"},
|
|
{"id": "deploy_ssh_key", "label": "Autoriser la clé RSA sur un hôte distant", "type": "sys", "params": "deploy_ssh_key"},
|
|
{"id": "clone_ssh_key", "label": "Cloner la clé RSA sur un hôte distant", "type": "sys", "params": "clone_ssh_key"},
|
|
{"id": "msmtp", "label": "Configurer MSMTP (Relais Mail)", "type": "sys", "params": "msmtp"},
|
|
{"id": "apparmor", "label": "Configurer AppArmor (Kernel)", "type": "sys", "params": "apparmor"},
|
|
{"id": "fail2ban", "label": "Configurer Fail2Ban", "type": "sys", "params": "fail2ban"},
|
|
{"id": "ufw", "label": "Configurer Firewall (UFW)", "type": "sys", "params": "ufw"},
|
|
{"id": "ntp", "label": "Configurer Heure Française", "type": "sys", "params": "ntp"}
|
|
]'
|