From d5e5ed4b698d4cf2fec3087f32ad97371a818c4d Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 21 Jun 2019 15:54:54 -0400 Subject: [PATCH] Add hostname into confirmation --- client-cli/pvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index 7f010b20..730c7708 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -1144,7 +1144,7 @@ def ceph_osd_add(node, device, weight, yes): """ if not yes: - click.echo('DANGER: This will completely destroy all data on disk {}.'.format(device)) + click.echo('DANGER: This will completely destroy all data on {} disk {}.'.format(node, device)) choice = input('Are you sure you want to do this? (y/N) ') if choice != 'y' and choice != 'Y': exit(0)