Changeset 41369 in vbox for trunk/src/VBox/Installer
- Timestamp:
- May 21, 2012 1:33:10 PM (13 years ago)
- Location:
- trunk/src/VBox/Installer
- Files:
-
- 2 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" -
trunk/src/VBox/Installer/solaris/smf-vboxwebsrv.sh
r41367 r41369 54 54 VW_SSL_RANDFILE=`/usr/bin/svcprop -p config/ssl_randfile $SMF_FMRI 2>/dev/null` 55 55 [ $? != 0 ] && VW_SSL_RANDFILE= 56 VW_AUTH_LIBRARY=`/usr/bin/svcprop -p config/auth_library 2>/dev/null`56 VW_AUTH_LIBRARY=`/usr/bin/svcprop -p config/auth_library $SMF_FMRI 2>/dev/null` 57 57 [ $? != 0 ] && VW_AUTH_LIBRARY= 58 VW_AUTH_PWHASH=`/usr/bin/svcprop -p config/auth_pwhash 2>/dev/null`58 VW_AUTH_PWHASH=`/usr/bin/svcprop -p config/auth_pwhash $SMF_FMRI 2>/dev/null` 59 59 [ $? != 0 ] && VW_AUTH_PWHASH= 60 60 VW_TIMEOUT=`/usr/bin/svcprop -p config/timeout $SMF_FMRI 2>/dev/null` … … 102 102 # Set authentication method + password hash 103 103 if [ -n "$VW_AUTH_LIBRARY" ]; then 104 execsu - "$VW_USER" -c "/opt/VirtualBox/VBoxManage setproperty websrvauthlibrary \"$VW_AUTH_LIBRARY\""104 su - "$VW_USER" -c "/opt/VirtualBox/VBoxManage setproperty websrvauthlibrary \"$VW_AUTH_LIBRARY\"" 105 105 if [ $? != 0 ]; then 106 106 echo "Error $? setting webservice authentication library to $VW_AUTH_LIBRARY" … … 108 108 fi 109 109 if [ -n "$VW_AUTH_PWHASH" ]; then 110 execsu - "$VW_USER" -c "/opt/VirtualBox/VBoxManage setextradata global \"VBoxAuthSimple/users/$VW_USER\" \"$VW_AUTH_PWHASH\""110 su - "$VW_USER" -c "/opt/VirtualBox/VBoxManage setextradata global \"VBoxAuthSimple/users/$VW_USER\" \"$VW_AUTH_PWHASH\"" 111 111 if [ $? != 0 ]; then 112 112 echo "Error $? setting webservice password hash"
Note:
See TracChangeset
for help on using the changeset viewer.