On 11/16/2012 06:17 PM, Alex Stanhope wrote:
On Friday, November 16, 2012 5:11:22 PM UTC, Ellison Marks wrote:

    Could you give some more info on what you're trying to accomplish
    with this? That way we might offer some ideas to help.


Of course.  I use a temporary file to store a private key passphrase.
  That passphrase is used to allow the client machine to load the
private key, and clone repositories from github.  After puppet has
installed the client machine, I'd like it to delete this temporary file,
so that future logins prompt the user for the password.  It's not the
end of the world to leave it there, or for me to clean it up manually.
  I know I could use passwordless private keys, but I think it's better
security to have passphrases on them.

You can maybe try some mumbo jumbo magic with stages and combining two exec's.

Like, first exec gets the key:

exec{'first':
  command => 'cd /tmp && wget mykey',
  creates => '/tmp/mykey',
}

exec{'second':
  command => 'echo "" > /tmp/mykey | tee -a /tmp/mykey2',
  creates => '/tmp/mykey2',
}


Put first in stage before main, second in stage after main, and that could work. Although it's a really really ugly hack, and circumvention of Declarative Language nature -> to declare states and not to run scripts...


--
Jakov Sosic
www.srce.unizg.hr

--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to