- Timestamp:
- Oct 25, 2008, 6:00:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/invirt-xen-config/debian/invirt-xen-config.init
- Property svn:executable set to *
r1257 r1261 10 10 ### END INIT INFO 11 11 12 set -e 12 PACKAGE=invirt-xen-config 13 PARENTPACKAGE=xend 14 GEN_FILES=/etc/xen/xend-config.sxp 13 15 14 case $1 in 15 start) 16 dpkg -s "$PACKAGE" >/dev/null 2>/dev/null || exit 0 17 18 . /lib/init/gen-files.sh 19 . /lib/init/std-init.sh 20 21 do_start() { 22 gen_files 23 16 24 echo 1 >/proc/sys/net/ipv4/ip_forward 17 for fooin all default; do18 echo 1 >/proc/sys/net/ipv4/conf/$foo/rp_filter19 echo 1 >/proc/sys/net/ipv4/conf/$foo/proxy_arp25 for i in all default; do 26 echo 1 >/proc/sys/net/ipv4/conf/$i/rp_filter 27 echo 1 >/proc/sys/net/ipv4/conf/$i/proxy_arp 20 28 done 21 ;; 22 esac 29 30 invoke-rc.d "$PARENTPACKAGE" "$1" 31 } 32 33 do_reload() { 34 do_start 35 } 36 37 do_stop() { 38 invoke-rc.d "$PARENTPACKAGE" "$1" 39 } 40 41 std_init "$1"
Note: See TracChangeset
for help on using the changeset viewer.