diff options
author | Alexander Langer <alex@FreeBSD.org> | 2003-02-12 17:11:09 +0000 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 2003-02-12 17:11:09 +0000 |
commit | 5d12a3bc25d03c4b24ecfd55510668a44befecc4 (patch) | |
tree | a63e0fdb465ff2a36a6cd2a6150a546889aeacb1 /emulators/vmware3 | |
parent | 420899055a544f612b0d12a45854eea45ecfc9ce (diff) | |
download | ports-5d12a3bc25d03c4b24ecfd55510668a44befecc4.tar.gz ports-5d12a3bc25d03c4b24ecfd55510668a44befecc4.zip |
Fix the stupid manual merge error I did in the last commit.
Notes
Notes:
svn path=/head/; revision=75381
Diffstat (limited to 'emulators/vmware3')
-rw-r--r-- | emulators/vmware3/files/vmware.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/emulators/vmware3/files/vmware.sh b/emulators/vmware3/files/vmware.sh index 2f4172c246d4..2f2d1f00d674 100644 --- a/emulators/vmware3/files/vmware.sh +++ b/emulators/vmware3/files/vmware.sh @@ -46,8 +46,6 @@ exec >/dev/null case $1 in start) kldstat -v | grep vmmon >/dev/null || kldload ${vmware_libdir}/modules/vmmon_${suffix}.ko - echo -n > /dev/vmnet1 - echo -n > /dev/vmnet1 if [ $networking -eq 1 ]; then kldstat -v | grep if_tap >/dev/null || kldload if_tap.ko if [ ! -e $dev_vmnet1 ]; then @@ -55,7 +53,8 @@ start) echo "Your VMware installation seems broken. Please reinstall VMware port." >&2 exit 255 fi - echo -n > $dev_vmnet1 + echo -n > /dev/vmnet1 2>&1 || true + echo -n > $dev_vmnet1 2>&1 ifconfig vmnet1 $host_ip netmask $netmask if [ X$bridged = XYES ]; then kldstat -v | grep netgraph >/dev/null || kldload netgraph.ko |