Author: tomaz
Date: Thu Jun 16 21:58:45 2011
New Revision: 1136700

URL: http://svn.apache.org/viewvc?rev=1136700&view=rev
Log:
CMS commit to libcloud by tomaz

Modified:
    libcloud/site/trunk/content/getting-started.mdtext

Modified: libcloud/site/trunk/content/getting-started.mdtext
URL: 
http://svn.apache.org/viewvc/libcloud/site/trunk/content/getting-started.mdtext?rev=1136700&r1=1136699&r2=1136700&view=diff
==============================================================================
--- libcloud/site/trunk/content/getting-started.mdtext (original)
+++ libcloud/site/trunk/content/getting-started.mdtext Thu Jun 16 21:58:45 2011
@@ -103,9 +103,9 @@ or install an SSH Key.
     # read your public key in
     # Note: This key will be added to the authorized keys for the root user
     # (/root/.ssh/authorized_keys)
-    sd = SSHKeyDeployment(open(os.path.expanduser("~/.ssh/id_dsa.pub")).read())
+    sd = SSHKeyDeployment(open(os.path.expanduser("~/.ssh/id_rsa.pub")).read())
     # a simple script to install puppet post boot, can be much more 
complicated.
-    script = ScriptDeployment("apt-get install puppet")
+    script = ScriptDeployment("apt-get -y install puppet")
     # a task that first installs the ssh key, and then runs the script
     msd = MultiStepDeployment([sd, script])
 


Reply via email to