0cb9c2b754
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10732 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
11 lines
361 B
Bash
11 lines
361 B
Bash
#!/bin/sh
|
|
#first off, let's ditch UNMAP, per vwmare's recall...
|
|
localcli system settings advanced set --int-value 0 --option /VMFS3/EnableBlockDelete
|
|
#ok, now let's turn on some SSH and ESXShell fun
|
|
localcli network firewall ruleset set -r sshServer -e y
|
|
chkconfig ESXShell on
|
|
chkconfig SSH on
|
|
/etc/init.d/SSH start
|
|
/etc/init.d/ESXShell start
|
|
return ${SUCCESS}
|