fixing using ip instead of ifconfig for IP addr detection at debhelper time
This commit is contained in:
parent
df542298f9
commit
0dc7adf03c
|
@ -89,7 +89,7 @@ MYSQL_MAIL_USER=alternc_user
|
||||||
MYSQL_MAIL_PASS="`perl -e 'print map{("a".."z","A".."Z",0..9)[int(rand(62))]}(1..10)' `"
|
MYSQL_MAIL_PASS="`perl -e 'print map{("a".."z","A".."Z",0..9)[int(rand(62))]}(1..10)' `"
|
||||||
MYSQL_CLIENT=localhost
|
MYSQL_CLIENT=localhost
|
||||||
FQDN="`(cat /etc/mailname 2>/dev/null || hostname -f)|tr '[:upper:]' '[:lower:]'`"
|
FQDN="`(cat /etc/mailname 2>/dev/null || hostname -f)|tr '[:upper:]' '[:lower:]'`"
|
||||||
INTERNAL_IP="`env LANG=C /sbin/ifconfig|grep inet | grep -v 127.0.0.1| head -1 | cut -d: -f2 | sed -e 's/\([0-9\.]*\).*$/\1/' 2>/dev/null || hostname -f`"
|
INTERNAL_IP="`env LANG=C /sbin/ip addr show|grep 'inet ' | grep -v 127.0.0.1| head -1 | sed -e 's/^.*inet \([0-9\.]*\).*$/\1/' 2>/dev/null || hostname -f`"
|
||||||
PUBLIC_IP="$INTERNAL_IP"
|
PUBLIC_IP="$INTERNAL_IP"
|
||||||
DEFAULT_MX="`cat /etc/mailname 2>/dev/null || hostname -f`"
|
DEFAULT_MX="`cat /etc/mailname 2>/dev/null || hostname -f`"
|
||||||
ALTERNC_HTML="/var/www/alternc/"
|
ALTERNC_HTML="/var/www/alternc/"
|
||||||
|
|
Loading…
Reference in New Issue