From: Max Carrara <m.carrara@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH manager v2] fix #4364: pveceph: add confirmation dialogue for ceph installation
Date: Wed, 5 Jul 2023 20:02:40 +0200 [thread overview]
Message-ID: <20230705180240.300150-1-m.carrara@proxmox.com> (raw)
Displays a confirmation dialogue if the user didn't explicitly
provide a valid ceph version via the `--version` flag and if
stdout is connected to a tty.
Signed-off-by: Max Carrara <m.carrara@proxmox.com>
---
v2 of this little patch incorporates the given feedback[0] (thanks btw!)
Regarding exit codes: Even though it's not too important, I think we
should stick with a non-zero exit code here; at least from what I've
encountered, installation wizards or similar will only exit with 0
if the installation succeeded *or* if the thing to be installed is
already installed. That way subsequent commands are only executed if
the things to be installed are actually there, as further commands
*might* already depend on them, e.g.:
apt-get install -y neofetch && neofetch
pveceph install --version quincy && ceph status
This is mostly philosophical, but I've personally found that behaviour
useful in some situations.
[0]: https://lists.proxmox.com/pipermail/pve-devel/2023-July/057993.html
PVE/CLI/pveceph.pm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/PVE/CLI/pveceph.pm b/PVE/CLI/pveceph.pm
index b47f8cc1..8cff04c5 100755
--- a/PVE/CLI/pveceph.pm
+++ b/PVE/CLI/pveceph.pm
@@ -176,6 +176,16 @@ __PACKAGE__->register_method ({
} else {
die "unsupported ceph version: $cephver";
}
+
+ if (-t STDOUT && !$param->{version}) {
+ print "This will install Ceph " . ucfirst($cephver) . " - continue (y/N)? ";
+
+ my $answer = <STDIN>;
+ my $continue = defined($answer) && $answer =~ m/^\s*y(?:es)?\s*$/i;
+
+ die "Aborting installation as requested\n" if !$continue;
+ }
+
PVE::Tools::file_set_contents("/etc/apt/sources.list.d/ceph.list", $repolist);
my $supported_re = join('|', $supported_ceph_versions->@*);
--
2.39.2
next reply other threads:[~2023-07-05 18:02 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-05 18:02 Max Carrara [this message]
2023-07-06 14:10 ` [pve-devel] applied: " Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230705180240.300150-1-m.carrara@proxmox.com \
--to=m.carrara@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox