Changeset 19082 in vbox
- Timestamp:
- Apr 21, 2009 2:32:11 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46223
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/postinstall.sh
r19021 r19082 44 44 /opt/VirtualBox/vboxdrv.sh netstart 45 45 rc=$? 46 47 # nwam/dhcpagent fix 48 if test "$rc" -eq 0 && test -f /etc/nwam/llp; then 49 sed -e '/vboxnet/d' /etc/nwam/llp > /etc/nwam/llp.vbox 50 echo "vboxnet0 static 1.1.1.1" >> /etc/nwam/llp.vbox 51 mv -f /etc/nwam/llp.vbox /etc/nwam/llp 52 fi 46 53 fi 47 54 -
trunk/src/VBox/Installer/solaris/preremove.sh
r18265 r19082 48 48 mv -f /etc/devlink.vbox /etc/devlink.tab 49 49 50 # remove nwam entry for vboxnet 51 if test -f /etc/nwam/llp; then 52 sed -e '/vboxnet/d' /etc/nwam/llp > /etc/nwam/llp.vbox 53 mv -f /etc/nwa/llp.vbox /etc/nwam/llp 54 fi 55 50 56 # remove devlink.tab entry for vboxusbmon 51 57 sed -e '
Note:
See TracChangeset
for help on using the changeset viewer.