Changeset 50296 in vbox
- Timestamp:
- Jan 30, 2014 7:33:06 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91955
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/smf-vboxballoonctrl.sh
r44336 r50296 2 2 # $Id$ 3 3 4 # Copyright (C) 2008-201 3Oracle Corporation4 # Copyright (C) 2008-2014 Oracle Corporation 5 5 # 6 6 # This file is part of VirtualBox Open Source Edition (OSE), as … … 25 25 case $VW_OPT in 26 26 start) 27 if [ ! - x/opt/VirtualBox/VBoxBalloonCtrl ]; then27 if [ ! -f /opt/VirtualBox/VBoxBalloonCtrl ]; then 28 28 echo "ERROR: /opt/VirtualBox/VBoxBalloonCtrl does not exist." 29 29 return $SMF_EXIT_ERR_CONFIG 30 30 fi 31 31 32 if [ ! - f/opt/VirtualBox/VBoxBalloonCtrl ]; then33 echo "ERROR: /opt/VirtualBox/VBoxBalloonCtrl does not exist."32 if [ ! -x /opt/VirtualBox/VBoxBalloonCtrl ]; then 33 echo "ERROR: /opt/VirtualBox/VBoxBalloonCtrl is not executable." 34 34 return $SMF_EXIT_ERR_CONFIG 35 35 fi -
trunk/src/VBox/Installer/solaris/smf-vboxwebsrv.sh
r41369 r50296 2 2 # $Id$ 3 3 4 # Copyright (C) 2008-201 2Oracle Corporation4 # Copyright (C) 2008-2014 Oracle Corporation 5 5 # 6 6 # This file is part of VirtualBox Open Source Edition (OSE), as … … 25 25 case $VW_OPT in 26 26 start) 27 if [ ! - x/opt/VirtualBox/vboxwebsrv ]; then27 if [ ! -f /opt/VirtualBox/vboxwebsrv ]; then 28 28 echo "ERROR: /opt/VirtualBox/vboxwebsrv does not exist." 29 29 return $SMF_EXIT_ERR_CONFIG 30 30 fi 31 31 32 if [ ! - f/opt/VirtualBox/vboxwebsrv ]; then33 echo "ERROR: /opt/VirtualBox/vboxwebsrv does not exist."32 if [ ! -x /opt/VirtualBox/vboxwebsrv ]; then 33 echo "ERROR: /opt/VirtualBox/vboxwebsrv is not executable." 34 34 return $SMF_EXIT_ERR_CONFIG 35 35 fi
Note:
See TracChangeset
for help on using the changeset viewer.