From 54f1581b99564254e6b836b9213aae67e0bc73c0 Mon Sep 17 00:00:00 2001 From: mcramer Date: Tue, 11 Sep 2012 16:57:16 +0000 Subject: [PATCH] Fixed: FS#2314 - Reseller creation in remote API does not work properly (id_rsa and ssh_rsa) --- interface/lib/classes/remoting.inc.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface/lib/classes/remoting.inc.php b/interface/lib/classes/remoting.inc.php index 47bb0573d..d39769b15 100644 --- a/interface/lib/classes/remoting.inc.php +++ b/interface/lib/classes/remoting.inc.php @@ -2651,6 +2651,12 @@ class remoting { } */ + /* copied from the client_edit php */ + exec('ssh-keygen -t rsa -C '.$username.'-rsa-key-'.time().' -f /tmp/id_rsa -N ""'); + $app->db->query("UPDATE client SET created_at = ".time().", id_rsa = '".$app->db->quote(@file_get_contents('/tmp/id_rsa'))."', ssh_rsa = '".$app->db->quote(@file_get_contents('/tmp/id_rsa.pub'))."' WHERE client_id = ".$this->id); + exec('rm -f /tmp/id_rsa /tmp/id_rsa.pub'); + + //$app->uses('tform'); //* Save changes to Datalog -- GitLab