This commit is contained in:
2019-04-14 19:34:54 +02:00
commit eeeae624e4
5 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Remove left-overs from an incomplete shutdown previously.
rm -rf /run/httpd/* /tmp/httpd*
exec /usr/sbin/httpd \
-DFOREGROUND \
-c "LogLevel ${LOG_LEVEL:-error}" \
-c "ServerName ${HOSTNAME}" \
"$@"

View File

@@ -0,0 +1,9 @@
# /etc/bashrc.local
PS1='\u@\w/ \$ '
export PS1
alias ls="ls -F --color"
alias l="ls -ahl"
#end