Correct the "Booting the host" commands

Corrected the curl command to power on the host.
The state code is now xyz/openbmc_project/state,
not org/openbmc/control.
Also, changed the host in the curl commands from "palm5-bmc"
to "bmc", "bmc" is found in the rest of the docs.

Change-Id: I7b0a808f9697994d44bc552d7fd02b07707b9d9c
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/cheatsheet.md b/cheatsheet.md
index 970664a..0aa3bc6 100644
--- a/cheatsheet.md
+++ b/cheatsheet.md
@@ -144,7 +144,7 @@
 
 Login:
 ```
-curl -c cjar -k -X POST -H "Content-Type: application/json" -d '{"data": [ "root", "0penBmc" ] }' https://palm5-bmc/login
+curl -c cjar -k -X POST -H "Content-Type: application/json" -d '{"data": [ "root", "0penBmc" ] }' https://bmc/login
 ```
 
 Connect to host console:
@@ -154,7 +154,9 @@
 
 Power on:
 ```
-curl -c cjar -b cjar -k -H "Content-Type: application/json" -X POST     -d '{"data": []}'  https://palm5-bmc/org/openbmc/control/chassis0/action/powerOn
+curl -c cjar -b cjar -k -H "Content-Type: application/json" -X PUT \
+  -d '{"data": "xyz.openbmc_project.State.Host.Transition.On"}' \
+  https://bmc/xyz/openbmc_project/state/host0/attr/RequestedHostTransition
 ```
 
 ## GDB