diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-02-17 07:03:40 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-02-17 07:03:40 +0000 |
commit | 82ccbba12401cefd9398f70fb2ad763025fa3919 (patch) | |
tree | f8a5aced7474c90ea4e74f2b07b873ffad493f47 /installer/cli.php | |
parent | ae06ad3a414c9d112e5aae92118ad9d134c00056 (diff) |
Move private key generation into the installer so that we're not
generating it lazily.
Diffstat (limited to 'installer/cli.php')
-rw-r--r-- | installer/cli.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/cli.php b/installer/cli.php index fb497635..ee2d6880 100644 --- a/installer/cli.php +++ b/installer/cli.php @@ -53,6 +53,8 @@ if (!installer::connect($config)) { print " username: $user\n"; print " password: $password\n"; print "\n"; + + installer::create_private_key(); exit(0); } catch (Exception $e) { oops($e->getMessage()); |