Import rest of modules.
This commit is contained in:
parent
02fa10f33c
commit
3f225ced9b
39 changed files with 2056 additions and 0 deletions
16
vmware/files/scripts/vmware-register
Executable file
16
vmware/files/scripts/vmware-register
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
. /usr/local/lib/vmware.sh
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo "Usage: `basename $0` <vmx>" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
vmx="`abspath \"${1}\"`"
|
||||
if [ ! -f "${vmx}" ]; then
|
||||
echo "Cannot find vmx file ${vmx}" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
vmware-vim-cmd solo/registervm "${vmx}"
|
Loading…
Add table
Add a link
Reference in a new issue