~ubuntu-branches/ubuntu/hardy/vzctl/hardy-proposed

« back to all changes in this revision

Viewing changes to etc/vps-functions

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2007-04-13 11:22:11 UTC
  • Revision ID: james.westby@ubuntu.com-20070413112211-cj3avmyaz311l4tr
Tags: 3.0.11-13ubuntu1
Disabled all arches except for i386.

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
        [ -z "${NETDEVICES}" ] && vzwarning "Device list is empty"
110
110
        for DEV in $NETDEVICES; do
111
111
                if [ $(cat /proc/sys/net/ipv4/conf/$DEV/proxy_arp) == 0 ] ; then
112
 
                    vzwarning "Function proxy_arp for $DEV is set to 0. Enable with 'sysctl -w net.ipv4.conf.$DEV.proxy_arp=1'. See /usr/share/doc/README.Debian."
 
112
                    vzwarning "Function proxy_arp for $DEV is set to 0. Enable with 'sysctl -w net.ipv4.conf.$DEV.proxy_arp=1'. See /usr/share/doc/vzctl/README.Debian."
113
113
                fi
114
114
                ${IP_CMD} neigh $1 proxy $2 dev $DEV > /dev/null 2>&1
115
115
        done