Displaying 1 result from an estimated 1 matches for "ssh_rsa_keys".
2007 Aug 08
6
Exporting collections/sshkeys
...start getting ssh keys from other machines i.e.:
sqlite> update resources SET exported=''t'' where restype=''sshkey'';
So I am either doing something wrong below or exported resources are not
tagged as such? Hints? Bug? Help?
Thanks,
Josko P.
Recipe:
class ssh_rsa_keys {
# add the key, if we have one
case $sshrsakey {
"": { # ignore empty keys
}
default: {
@@sshkey { "$hostname": type => rsa, key =>
$sshrsakey }
@@sshkey { &qu...