1
0
Fork 0
This commit is contained in:
root 2019-07-29 09:19:28 +02:00
parent c839ad7951
commit a85b7a440b
1 changed files with 9 additions and 1 deletions

View File

@ -440,6 +440,13 @@ _SETUP_TOOLS() {
DEBIAN_FRONTEND=noninteractive $NEED_SUDO apt-get -o Dpkg::Options::="--force-confmiss" -o Dpkg::Options::="--force-confold" -y install haveged curl git unzip zip htop nload nmon ntp gnupg gnupg2 wget pigz tree ccze
}
_RSYSLOG_UFW() {
[ -f /etc/rsyslog.d/20-ufw.conf ] && {
sed -i 's/\#\& stop/\& stop/' /etc/rsyslog.d/20-ufw.conf
service rsyslog restart
}
}
# enable color support of ls and also add handy aliases
# some more ls aliases
#alias wp='/usr/bin/wp --allow-root'
@ -499,4 +506,5 @@ alias install-nanorc=_INSTALL_NANORC
alias sysinfo=_SYSINFO
alias sitespeed=_SITESPEED
alias nano=_NANO
alias setup-tools=_SETUP_TOOLS
alias setup-tools=_SETUP_TOOLS
alias rsyslog-ufw=_RSYSLOG_UFW