Changeset 41369 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- May 21, 2012 1:33:10 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78061
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/vboxweb-service.sh.in
r41367 r41369 312 312 # set authentication method + password hash 313 313 if [ -n "$VBOXWEB_AUTH_LIBRARY" ]; then 314 execsu - "$VBOXWEB_USER" -c "$vboxmanage setproperty websrvauthlibrary \"$VBOXWEB_AUTH_LIBRARY\""314 su - "$VBOXWEB_USER" -c "$vboxmanage setproperty websrvauthlibrary \"$VBOXWEB_AUTH_LIBRARY\"" 315 315 if [ $? -ne 0 ]; then 316 316 fail_msg "Error $? setting webservice authentication library to $VBOXWEB_AUTH_LIBRARY" … … 318 318 fi 319 319 if [ -n "$VBOXWEB_AUTH_PWHASH" ]; then 320 execsu - "$VBOXWEB_USER" -c "$vboxmanage setextradata global \"VBoxAuthSimple/users/$VBOXWEB_USER\" \"$VBOXWEB_AUTH_PWHASH\""320 su - "$VBOXWEB_USER" -c "$vboxmanage setextradata global \"VBoxAuthSimple/users/$VBOXWEB_USER\" \"$VBOXWEB_AUTH_PWHASH\"" 321 321 if [ $? -ne 0 ]; then 322 322 fail_msg "Error $? setting webservice password hash"
Note:
See TracChangeset
for help on using the changeset viewer.