Remove CHOWN call in KeyStore

This commit is contained in:
Niklas Keller
2016-03-12 17:16:03 +01:00
parent a82d601e85
commit 73b88e3e9e

View File

@@ -73,7 +73,6 @@ class KeyStore {
yield \Amp\File\put($file, $keyPair->getPrivate());
yield \Amp\File\chmod($file, 0600);
yield \Amp\File\chown($file, 0, 0);
} catch (FilesystemException $e) {
throw new KeyStoreException("Could not save key.", 0, $e);
}