Page MenuHomePhabricator

D11700.diff
No OneTemporary

D11700.diff

diff --git a/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php b/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php
--- a/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php
+++ b/src/applications/almanac/management/AlmanacManagementRegisterWorkflow.php
@@ -115,7 +115,16 @@
}
}
- list($raw_public_key) = execx('ssh-keygen -y -f %s', $private_key_path);
+ // NOTE: We're writing the private key here so we can change permissions
+ // on it without causing weird side effects to the file specified with
+ // the `--private-key` flag. The file needs to have restrictive permissions
+ // before `ssh-keygen` will willingly operate on it.
+ $tmp_private = new TempFile();
+ Filesystem::changePermissions($tmp_private, 0600);
+ execx('chown %s %s', $phd_user, $tmp_private);
+ Filesystem::writeFile($tmp_private, $raw_private_key);
+
+ list($raw_public_key) = execx('ssh-keygen -y -f %s', $tmp_private);
$key_object = PhabricatorAuthSSHPublicKey::newFromRawKey($raw_public_key);
@@ -173,11 +182,6 @@
$console->writeOut(
"%s\n",
pht('Installing private key...'));
-
- $tmp_private = new TempFile();
- Filesystem::changePermissions($tmp_private, 0600);
- execx('chown %s %s', $phd_user, $tmp_private);
- Filesystem::writeFile($tmp_private, $raw_private_key);
execx('mv -f %s %s', $tmp_private, $stored_private_path);
$raw_device = $device_name;

File Metadata

Mime Type
text/plain
Expires
Fri, Mar 7, 8:27 PM (4 w, 13 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7348029
Default Alt Text
D11700.diff (1 KB)

Event Timeline