Add files via upload
This commit is contained in:
parent
d344433804
commit
b962262887
23
.profile
23
.profile
|
|
@ -9,11 +9,13 @@ fi
|
|||
|
||||
mesg n || true
|
||||
|
||||
|
||||
##########################################################
|
||||
# Custom Profile
|
||||
##########################################################
|
||||
|
||||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;34m\]\u@\h \[\033[01;32m\]\w\[\033[00m\]\$ '
|
||||
MaxHDUse=80
|
||||
|
||||
export LS_OPTIONS='--color=auto'
|
||||
eval "`dircolors`"
|
||||
|
|
@ -27,19 +29,28 @@ alias cp='cp -i'
|
|||
alias mv='mv -i'
|
||||
alias maj='apt update && apt full-upgrade -y && apt autoremove -y'
|
||||
alias sp='source .profile'
|
||||
alias ep='nano .profile'
|
||||
|
||||
clear
|
||||
neofetch
|
||||
alias disk="df -h | grep dev | sed -e 's/ /:/g' | sed -e 's/::/:/g'"
|
||||
alias disk="df -h 2>/dev/null | grep '/$' | sed -e 's/ /:/g' | sed -e 's/::/:/g' | sed -e 's/::/:/g'"
|
||||
|
||||
echo "Bienvenue sur : $(hostname -f) ($(hostname -i)) !"
|
||||
echo "Bienvenue sur : $(hostname -f) ($(hostname -I)) !"
|
||||
echo "******************************************************"
|
||||
echo "Note: Toutes actions sur ce serveur sont enregistrees."
|
||||
echo "------------------------------------------------------"
|
||||
echo "Date : $(date) "
|
||||
echo "Uptime : $(uptime -p)"
|
||||
echo "Disk : Use->$(disk | cut -d ':' -f3) / Free->$(disk | cut -d ':' -f4) (Use: $(disk | cut -d ':' -f5))"
|
||||
echo -e "Apache2 : \033[01;32m $(service apache2 status | grep Active | cut -d ' ' -f5,6) \033[01;37m"
|
||||
echo -e "MariaDB : \033[01;32m $(service mysql status | grep Active | cut -d ' ' -f5,6) \033[01;37m"
|
||||
echo ""
|
||||
|
||||
# Disk : Verification de l'espace restant
|
||||
FD=$(echo $(disk | cut -d ':' -f5)| cut -d '%' -f1)
|
||||
[ $FD -lt $MaxHDUse ] && libre="\e[01;32;7m $FD% \e[0m" || libre="\e[41;37;5m $FD% \e[0m"
|
||||
echo -e "Disk : Use->$(disk | cut -d ':' -f3) / Free->$(disk | cut -d ':' -f4) (Use: $libre)"
|
||||
|
||||
# Verification des services
|
||||
pidof "mysqld" >/dev/null && echo -e "MariaDB : \e[01;32;7m Service actif \e[0m" || echo -e "MariaDB : \e[41;37;5m Service inactif \e[0m"
|
||||
pidof "apache2" >/dev/null && echo -e "Apache2 : \e[01;32;7m Service actif \e[0m" || echo -e "Apache2 : \e[41;37;5m Service inactif \e[0m"
|
||||
pidof "fusioninventory" >/dev/null && echo -e "Fusion : \e[01;32;7m Service actif \e[0m" || echo -e "Fusion : \e[41;37;5m Service inactif \e[0m"
|
||||
|
||||
echo "Merci de vérifier que vous êtes bien à l'originie de cette connexion." | mail -s "Connexion sur : $HOSTNAME avec le compte : $USER" admin@h3campus.fr
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue