40 lines
914 B
Bash
40 lines
914 B
Bash
#!/bin/sh
|
|
|
|
# INCLUDE COLORS
|
|
. /etc/profile.d/inc/colors.sh
|
|
|
|
clear
|
|
|
|
echo -e "
|
|
${CYAN}[ WEBSITE ]
|
|
${YELLOW}Websites folder.........: ${WHITE}TODO
|
|
${CYAN}[ APACHE ]
|
|
${YELLOW}Vhost Websites includes.: ${WHITE}TODO
|
|
${CYAN}[ PHP ]
|
|
${YELLOW}Apache config...........: ${WHITE}TODO
|
|
${YELLOW}CLI config..............: ${WHITE}TODO
|
|
${CYAN}[ MYSQL ]
|
|
${YELLOW}Vhost Websites includes.: ${WHITE}TODO
|
|
${CYAN}[ MAIL ]
|
|
${YELLOW}graphical config........: ${WHITE}TODO
|
|
${CYAN}[ ZABBIX ]
|
|
${YELLOW}Zabbix agent config.....: ${WHITE}/etc/zabbix/zabbix-agent.conf
|
|
${CYAN}[ CUSTOM ]
|
|
${YELLOW}Login message...........: ${WHITE}/etc/profile.d/*
|
|
${YELLOW}SSH custom display......: ${WHITE}/root/.bashrc${NONE}
|
|
ajouter le path pour les mails
|
|
/etc/msmtprc
|
|
APP ARMOR
|
|
/etc/apparmor.d/local/
|
|
log rotate conf
|
|
/etc/logrotate.d/
|
|
Variable d environement
|
|
/etc/environment
|
|
"
|
|
|
|
##############
|
|
### INFOS ###
|
|
##############
|
|
|
|
. /etc/profile.d/inc/infos.sh
|