]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blobdiff - src/ppp/ip-up
Updated collectd rootfile for the updater
[people/teissler/ipfire-2.x.git] / src / ppp / ip-up
index cd266d5d037243f7e6e2f79c622c5e289242a92d..80fb49f49e1c2a5176860545535f03db5cd403af 100644 (file)
@@ -1,5 +1,26 @@
 #!/bin/sh
-#
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+. /etc/sysconfig/rc
+. $rc_functions
 
 PRIMARY_DNS=$DNS1
 SECONDARY_DNS=$DNS2
@@ -22,7 +43,18 @@ fi
 echo -n "$1" > /var/ipfire/red/iface
 echo -n "$4" > /var/ipfire/red/local-ipaddress
 echo -n "$5" > /var/ipfire/red/remote-ipaddress
+grep -v "gateway" /etc/hosts > /tmp/hosts
+
+TEST=`ping -c 2 $5 2>/dev/null | tail -2 | head -1 | cut -d"," -f2`;
+
+if [ "$TEST" == " 2 packets received" ]; then
+       echo "$5 gateway" >> /tmp/hosts
+else
+       FIRE=`nslookup ping.ipfire.org | tail -2  | head -1 | cut -d" " -f2`;
+       echo "$FIRE gateway" >> /tmp/hosts
+fi
 
+mv /tmp/hosts /etc/hosts
 touch /var/ipfire/red/active
 
 run_subdir ${rc_base}/init.d/networking/red.up/