Add dedicated file for context variables
This commit is contained in:
parent
0084f5e67f
commit
edf65b7760
|
@ -8,45 +8,11 @@ BLUE='\033[1;34m'
|
||||||
GREEN='\033[1;32m'
|
GREEN='\033[1;32m'
|
||||||
NC='\033[0m' # No Color
|
NC='\033[0m' # No Color
|
||||||
|
|
||||||
# Packages to check
|
. vars.sh
|
||||||
PACKAGES=(
|
|
||||||
# 'virtual/ssh'
|
|
||||||
# 'app-admin/rsyslog'
|
|
||||||
# 'net-misc/ntp'
|
|
||||||
# 'net-analyzer/icinga2'
|
|
||||||
# 'app-backup/borgbackup'
|
|
||||||
# 'virtual/cron'
|
|
||||||
# 'sys-process/cronie'
|
|
||||||
# 'net-analyzer/munin'
|
|
||||||
# 'app-admin/sysklogd'
|
|
||||||
# 'dev-vcs/git'
|
|
||||||
# 'net-analyzer/nrpe'
|
|
||||||
# 'net-analyzer/net-snmp'
|
|
||||||
# 'net-dns/bind-tools'
|
|
||||||
# 'dev-vcs/git'
|
|
||||||
# 'mail-mta/postfix'
|
|
||||||
# 'mail-mta/eeeepostfix'
|
|
||||||
)
|
|
||||||
|
|
||||||
# Package to check if it's a physical machine
|
|
||||||
PACKAGES_PHYSICAL=(
|
|
||||||
'sys-apps/smartmontools'
|
|
||||||
)
|
|
||||||
|
|
||||||
# Print packages not installed or with error at end script
|
# Print packages not installed or with error at end script
|
||||||
PACKAGES_TO_CHECK=""
|
PACKAGES_TO_CHECK=""
|
||||||
|
|
||||||
NAMES_TO_RESOLV_AND_PING=(
|
|
||||||
'grifon.fr'
|
|
||||||
'arn-fai.net'
|
|
||||||
'grifonfesfdsfdsf.fr'
|
|
||||||
)
|
|
||||||
|
|
||||||
RESOLVERS=(
|
|
||||||
'2a00:5884::7'
|
|
||||||
'89.234.186.4'
|
|
||||||
)
|
|
||||||
|
|
||||||
RESOLV_FAILED=""
|
RESOLV_FAILED=""
|
||||||
|
|
||||||
RESOLVER_NOT_IN_ETC_RESOLVCONF=""
|
RESOLVER_NOT_IN_ETC_RESOLVCONF=""
|
||||||
|
@ -55,34 +21,9 @@ IP_NOT_RECORDED_IN_DNS=""
|
||||||
|
|
||||||
PING_FAILED=""
|
PING_FAILED=""
|
||||||
|
|
||||||
SERVICES_TO_CHECK=(
|
|
||||||
'rsyslog'
|
|
||||||
'ntpd'
|
|
||||||
'munin-node'
|
|
||||||
'iptables'
|
|
||||||
'ip6tables'
|
|
||||||
'sshd'
|
|
||||||
'postfix'
|
|
||||||
'nrpe'
|
|
||||||
'snmpd'
|
|
||||||
'hostname'
|
|
||||||
)
|
|
||||||
|
|
||||||
SERVICES_TO_CHECK_PHYSICAL=(
|
|
||||||
'smard'
|
|
||||||
)
|
|
||||||
|
|
||||||
# Get ALL locales IPs except loopback
|
# Get ALL locales IPs except loopback
|
||||||
LOCALES_IP_WITHOUT_LOOPBACK=$(ip a |grep inet |grep -v 'fe80\|127.0.0.1\|::1/128'| tr -s " " |cut -f3 -d' '| cut -d\/ -f1)
|
LOCALES_IP_WITHOUT_LOOPBACK=$(ip a |grep inet |grep -v 'fe80\|127.0.0.1\|::1/128'| tr -s " " |cut -f3 -d' '| cut -d\/ -f1)
|
||||||
|
|
||||||
IPV4_ADMIN_NETWORK="172.18.0."
|
|
||||||
IPV6_ADMIN_NETWORK="fd01:1e02:40:"
|
|
||||||
|
|
||||||
IPV4_MASTER_MUNIN='^172\\\.18\\\.0\\\.13\$'
|
|
||||||
IPV6_MASTER_MUNIN='^fd01:1e02:40::3\$'
|
|
||||||
IPV4_MASTER_MUNIN_PRINT='^172\.18\.0\.13$'
|
|
||||||
IPV6_MASTER_MUNIN_PRINT='^fd01:1e02:40::3$'
|
|
||||||
|
|
||||||
BOOL_ADMIN_IPV4_NOT_CONFIGURED=0
|
BOOL_ADMIN_IPV4_NOT_CONFIGURED=0
|
||||||
BOOL_ADMIN_IPV6_NOT_CONFIGURED=0
|
BOOL_ADMIN_IPV6_NOT_CONFIGURED=0
|
||||||
|
|
||||||
|
@ -97,8 +38,6 @@ NRPE_CONFIG_CHECK_FAILED=""
|
||||||
MUNIN_CONFIG_CHECK_FAILED=""
|
MUNIN_CONFIG_CHECK_FAILED=""
|
||||||
MAIL_ALIAS_CONFIG_CHECK_FAILED=""
|
MAIL_ALIAS_CONFIG_CHECK_FAILED=""
|
||||||
|
|
||||||
MAIL_ALIAS_ROOT="admin@grifon.fr"
|
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
printf "Usage: ./recipe_gentoo.sh [--physical]\n"
|
printf "Usage: ./recipe_gentoo.sh [--physical]\n"
|
||||||
printf "option : \t-P, --physical : if the current server is not a VM but a physical machine\n"
|
printf "option : \t-P, --physical : if the current server is not a VM but a physical machine\n"
|
||||||
|
|
63
vars.sh
Normal file
63
vars.sh
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
# Packages to check
|
||||||
|
PACKAGES=(
|
||||||
|
# 'virtual/ssh'
|
||||||
|
# 'app-admin/rsyslog'
|
||||||
|
# 'net-misc/ntp'
|
||||||
|
# 'net-analyzer/icinga2'
|
||||||
|
# 'app-backup/borgbackup'
|
||||||
|
# 'virtual/cron'
|
||||||
|
# 'sys-process/cronie'
|
||||||
|
# 'net-analyzer/munin'
|
||||||
|
# 'app-admin/sysklogd'
|
||||||
|
# 'dev-vcs/git'
|
||||||
|
# 'net-analyzer/nrpe'
|
||||||
|
# 'net-analyzer/net-snmp'
|
||||||
|
# 'net-dns/bind-tools'
|
||||||
|
# 'dev-vcs/git'
|
||||||
|
# 'mail-mta/postfix'
|
||||||
|
# 'mail-mta/eeeepostfix'
|
||||||
|
)
|
||||||
|
|
||||||
|
# Package to check if it's a physical machine
|
||||||
|
PACKAGES_PHYSICAL=(
|
||||||
|
'sys-apps/smartmontools'
|
||||||
|
)
|
||||||
|
|
||||||
|
NAMES_TO_RESOLV_AND_PING=(
|
||||||
|
'grifon.fr'
|
||||||
|
'arn-fai.net'
|
||||||
|
'grifonfesfdsfdsf.fr'
|
||||||
|
)
|
||||||
|
|
||||||
|
RESOLVERS=(
|
||||||
|
'2a00:5884::7'
|
||||||
|
'89.234.186.4'
|
||||||
|
)
|
||||||
|
|
||||||
|
SERVICES_TO_CHECK=(
|
||||||
|
'rsyslog'
|
||||||
|
'ntpd'
|
||||||
|
'munin-node'
|
||||||
|
'iptables'
|
||||||
|
'ip6tables'
|
||||||
|
'sshd'
|
||||||
|
'postfix'
|
||||||
|
'nrpe'
|
||||||
|
'snmpd'
|
||||||
|
'hostname'
|
||||||
|
)
|
||||||
|
|
||||||
|
SERVICES_TO_CHECK_PHYSICAL=(
|
||||||
|
'smard'
|
||||||
|
)
|
||||||
|
|
||||||
|
IPV4_ADMIN_NETWORK="172.16.0."
|
||||||
|
IPV6_ADMIN_NETWORK="fd06:1e02:40:"
|
||||||
|
|
||||||
|
IPV4_MASTER_MUNIN='^172\\\.16\\\.0\\\.13\$'
|
||||||
|
IPV6_MASTER_MUNIN='^fd06:1e02:40::3\$'
|
||||||
|
IPV4_MASTER_MUNIN_PRINT='^172\.16\.0\.13$'
|
||||||
|
IPV6_MASTER_MUNIN_PRINT='^fd06:1e02:40::3$'
|
||||||
|
|
||||||
|
MAIL_ALIAS_ROOT="admin6@grifon.fr"
|
||||||
|
|
Loading…
Reference in a new issue