Server IP : 85.214.239.14 / Your IP : 18.225.56.222 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/etc/wide-dhcpv6/ |
Upload File : |
#!/bin/sh # dhcp6c-script for Debian/Ubuntu. Jérémie Corbier, April, 2006. # resolvconf support by Mattias Guns, May 2006. RESOLVCONF="/sbin/resolvconf" [ -f /etc/default/wide-dhcpv6-client ] && . /etc/default/wide-dhcpv6-client if [ -n "$new_domain_name" -o -n "$new_domain_name_servers" ]; then old_resolv_conf=/etc/resolv.conf new_resolv_conf=/etc/resolv.conf.dhcp6c-new rm -f $new_resolv_conf if [ -n "$new_domain_name" ]; then echo search $new_domain_name >> $new_resolv_conf fi if [ -n "$new_domain_name_servers" ]; then for nameserver in $new_domain_name_servers; do # No need to add an already existing nameserver res=$(grep "nameserver $nameserver" $old_resolv_conf) if [ -z "$res" ]; then echo nameserver $nameserver >> $new_resolv_conf fi done fi # Use resolvconf if available if [ -h "$old_resolv_conf" -a -x "$RESOLVCONF" ]; then for IFACE in $INTERFACES; do cat $new_resolv_conf | $RESOLVCONF -a $IFACE done else # To preserve IPv4 informations... cat $old_resolv_conf >> $new_resolv_conf chown --reference=$old_resolv_conf $new_resolv_conf chmod --reference=$old_resolv_conf $new_resolv_conf mv -f $new_resolv_conf $old_resolv_conf fi fi exit 0