Changeset 3880 in vbox
- Timestamp:
- Jul 26, 2007 2:47:13 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23248
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/vboxnet.sh
r3845 r3880 144 144 start_network() { 145 145 begin "Starting VirtualBox host networking" 146 # If there is no configuration file or if the service is already running, 147 # assume that we have successfully started. 148 if [ -f "$VARFILE" -o ! -f "$CONFIG" ] 146 # If the service is already running, return successfully. 147 if [ -f "$VARFILE" ] 149 148 then 150 149 succ_msg … … 164 163 fail_msg 165 164 return 1 165 fi 166 # If there is no configuration file, report success 167 if [ ! -f "$CONFIG" ] 168 then 169 succ_msg 170 return 0 166 171 fi 167 172 # Fail if we can't read our configuration
Note:
See TracChangeset
for help on using the changeset viewer.