Changeset 13342 in vbox
- Timestamp:
- Oct 16, 2008 2:25:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/vboxnet.sh.in
r9789 r13342 136 136 { 137 137 begin_msg "Starting VirtualBox host networking" 138 # Set /dev/net/tun to belong to the group vboxusers if it exists and does 139 # yet belong to a group. 140 if ls -g "$TAPDEV" 2>/dev/null | grep root > /dev/null; then 141 chgrp vboxusers "$TAPDEV" 142 chmod 0660 "$TAPDEV" 143 fi 138 144 # If the service is already running, return successfully. 139 145 if [ -f "$VARFILE" ]; then … … 233 239 fi 234 240 done < "$CONFIG" 235 # Set /dev/net/tun to belong to the group vboxusers if it exists and does236 # yet belong to a group.237 if ls -g "$TAPDEV" 2>/dev/null | grep root > /dev/null; then238 chgrp vboxusers "$TAPDEV"239 chmod 0660 "$TAPDEV"240 fi241 241 return 0 242 242 }
Note:
See TracChangeset
for help on using the changeset viewer.