Support to add the ssh root pub key to the default administrator. This
authorMarc Fiuczynski <mef@cs.princeton.edu>
Sat, 24 Oct 2009 12:21:57 +0000 (12:21 +0000)
committerMarc Fiuczynski <mef@cs.princeton.edu>
Sat, 24 Oct 2009 12:21:57 +0000 (12:21 +0000)
is for backwards compatibility with 4.3-rc12 and to avoid confusing
MyPLC users who have learned to use the root key from /etc/planetlab/
to log in as root to nodes.

db-config
db-config.d/01-init

index 8333881..1f429e7 100755 (executable)
--- a/db-config
+++ b/db-config
@@ -11,7 +11,7 @@
 # $HeadURL$
 
 from plc_config import PLCConfiguration
-import sys
+import sys, os
 import resource
 
 g_url = ""
index 7fd6bdf..71453a0 100644 (file)
@@ -58,3 +58,26 @@ SetPersonPrimarySite(admin['person_id'], site['site_id'])
 AddRoleToPerson(10, admin['person_id'])
 AddRoleToPerson(20, admin['person_id'])
 
+# Associate root ssh key with the default administrator
+keyfile="/etc/planetlab/root_ssh_key.pub"
+person = GetPersons(admin['person_id'])[0]
+keys = GetKeys(person['key_ids'])
+if os.path.exists(keyfile):
+    sshkeyfp = file(keyfile,"r")
+    sshkey = sshkeyfp.read()
+    sshkeyfp.close()
+
+    found=False
+    for key in keys:
+        if key['key_type']=='ssh':
+            if key['key'] == sshkey:
+                found=True
+            else:
+                # should we delete other keys?
+                pass
+    if not found:
+        key_id = AddPersonKey(admin['person_id'],{'key_type':'ssh','key':sshkey})
+else:
+    if len(keys)==0:
+        print "WARNING: default administrator does not have an ssh key"
+        print "and the default ssh root pub key (%s) file does not exist."