summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-emulation/vmware-player/files/vmware-12.5.rc8
-rw-r--r--app-emulation/vmware-workstation/files/vmware-12.5.rc8
2 files changed, 8 insertions, 8 deletions
diff --git a/app-emulation/vmware-player/files/vmware-12.5.rc b/app-emulation/vmware-player/files/vmware-12.5.rc
index a9d6f22..0bb5ec8 100644
--- a/app-emulation/vmware-player/files/vmware-12.5.rc
+++ b/app-emulation/vmware-player/files/vmware-12.5.rc
@@ -21,7 +21,7 @@ start() {
for mod in /lib/modules/$(uname -r)/misc/vmci.ko \
/lib/modules/$(uname -r)/kernel/drivers/misc/vmw_vmci/vmw_vmci.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -v $(basename "${mod}" .ko)
eend $?
break
@@ -35,7 +35,7 @@ start() {
for mod in /lib/modules/$(uname -r)/misc/vsock.ko \
/lib/modules/$(uname -r)/kernel/net/vmw_vsock/vmw_vsock_vmci_transport.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -v $(basename "${mod}" .ko)
eend $?
break
@@ -68,7 +68,7 @@ stop() {
for mod in /lib/modules/$(uname -r)/misc/vsock.ko \
/lib/modules/$(uname -r)/kernel/net/vmw_vsock/vmw_vsock_vmci_transport.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -rv $(basename "${mod}" .ko)
eend $?
break
@@ -82,7 +82,7 @@ stop() {
for mod in /lib/modules/$(uname -r)/misc/vmci.ko \
/lib/modules/$(uname -r)/kernel/drivers/misc/vmw_vmci/vmw_vmci.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -rv $(basename "${mod}" .ko)
eend $?
break
diff --git a/app-emulation/vmware-workstation/files/vmware-12.5.rc b/app-emulation/vmware-workstation/files/vmware-12.5.rc
index a9d6f22..0bb5ec8 100644
--- a/app-emulation/vmware-workstation/files/vmware-12.5.rc
+++ b/app-emulation/vmware-workstation/files/vmware-12.5.rc
@@ -21,7 +21,7 @@ start() {
for mod in /lib/modules/$(uname -r)/misc/vmci.ko \
/lib/modules/$(uname -r)/kernel/drivers/misc/vmw_vmci/vmw_vmci.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -v $(basename "${mod}" .ko)
eend $?
break
@@ -35,7 +35,7 @@ start() {
for mod in /lib/modules/$(uname -r)/misc/vsock.ko \
/lib/modules/$(uname -r)/kernel/net/vmw_vsock/vmw_vsock_vmci_transport.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -v $(basename "${mod}" .ko)
eend $?
break
@@ -68,7 +68,7 @@ stop() {
for mod in /lib/modules/$(uname -r)/misc/vsock.ko \
/lib/modules/$(uname -r)/kernel/net/vmw_vsock/vmw_vsock_vmci_transport.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -rv $(basename "${mod}" .ko)
eend $?
break
@@ -82,7 +82,7 @@ stop() {
for mod in /lib/modules/$(uname -r)/misc/vmci.ko \
/lib/modules/$(uname -r)/kernel/drivers/misc/vmw_vmci/vmw_vmci.ko ;
do
- if [[ -f "${mod}" ]] ; then
+ if [ -f "${mod}" ] ; then
modprobe -rv $(basename "${mod}" .ko)
eend $?
break