* [pbs-devel] [PATCH proxmox-backup] restore: print to STDERR
@ 2020-11-25 13:28 Fabian Grünbichler
2020-11-25 13:40 ` [pbs-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Fabian Grünbichler @ 2020-11-25 13:28 UTC (permalink / raw)
To: pbs-devel
else restoring to STDOUT is broken..
Reported-by: Dominic Jäger <d.jaeger@proxmox.com>
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
---
src/bin/proxmox-backup-client.rs | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/bin/proxmox-backup-client.rs b/src/bin/proxmox-backup-client.rs
index 80b1ff22..372ff268 100644
--- a/src/bin/proxmox-backup-client.rs
+++ b/src/bin/proxmox-backup-client.rs
@@ -644,7 +644,7 @@ fn keyfile_parameters(param: &Value) -> Result<(Option<Vec<u8>>, CryptMode), Err
(None, None) => None,
(Some(_), Some(_)) => bail!("--keyfile and --keyfd are mutually exclusive"),
(Some(keyfile), None) => {
- println!("Using encryption key file: {}", keyfile);
+ eprintln!("Using encryption key file: {}", keyfile);
Some(file_get_contents(keyfile)?)
},
(None, Some(fd)) => {
@@ -654,7 +654,7 @@ fn keyfile_parameters(param: &Value) -> Result<(Option<Vec<u8>>, CryptMode), Err
.map_err(|err| {
format_err!("error reading encryption key from fd {}: {}", fd, err)
})?;
- println!("Using encryption key from file descriptor");
+ eprintln!("Using encryption key from file descriptor");
Some(data)
}
};
@@ -663,7 +663,7 @@ fn keyfile_parameters(param: &Value) -> Result<(Option<Vec<u8>>, CryptMode), Err
// no parameters:
(None, None) => match key::read_optional_default_encryption_key()? {
Some(key) => {
- println!("Encrypting with default encryption key!");
+ eprintln!("Encrypting with default encryption key!");
(Some(key), CryptMode::Encrypt)
},
None => (None, CryptMode::None),
@@ -676,7 +676,7 @@ fn keyfile_parameters(param: &Value) -> Result<(Option<Vec<u8>>, CryptMode), Err
(None, Some(crypt_mode)) => match key::read_optional_default_encryption_key()? {
None => bail!("--crypt-mode without --keyfile and no default key file available"),
Some(key) => {
- println!("Encrypting with default encryption key!");
+ eprintln!("Encrypting with default encryption key!");
(Some(key), crypt_mode)
},
}
@@ -1257,7 +1257,7 @@ async fn restore(param: Value) -> Result<Value, Error> {
None => None,
Some(key) => {
let (key, _, fingerprint) = decrypt_key(&key, &key::get_encryption_key_password)?;
- println!("Encryption key fingerprint: '{}'", fingerprint);
+ eprintln!("Encryption key fingerprint: '{}'", fingerprint);
Some(Arc::new(CryptConfig::new(key)?))
}
};
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [pbs-devel] applied: [PATCH proxmox-backup] restore: print to STDERR
2020-11-25 13:28 [pbs-devel] [PATCH proxmox-backup] restore: print to STDERR Fabian Grünbichler
@ 2020-11-25 13:40 ` Thomas Lamprecht
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Lamprecht @ 2020-11-25 13:40 UTC (permalink / raw)
To: Proxmox Backup Server development discussion, Fabian Grünbichler
On 25.11.20 14:28, Fabian Grünbichler wrote:
> else restoring to STDOUT is broken..
>
> Reported-by: Dominic Jäger <d.jaeger@proxmox.com>
>
> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
> ---
> src/bin/proxmox-backup-client.rs | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
>
applied, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-11-25 13:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-25 13:28 [pbs-devel] [PATCH proxmox-backup] restore: print to STDERR Fabian Grünbichler
2020-11-25 13:40 ` [pbs-devel] applied: " Thomas Lamprecht
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal