From 02b6ffd59a61f5a48f9f08b8efa678fd74867bbf Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 18 Jul 2018 11:03:22 -0400 Subject: [PATCH] Added note about passphrase-protected keys (#2189) --- netbox/secrets/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbox/secrets/forms.py b/netbox/secrets/forms.py index 8e7fa3b16..7a7e81610 100644 --- a/netbox/secrets/forms.py +++ b/netbox/secrets/forms.py @@ -153,7 +153,8 @@ class UserKeyForm(BootstrapMixin, forms.ModelForm): model = UserKey fields = ['public_key'] help_texts = { - 'public_key': "Enter your public RSA key. Keep the private one with you; you'll need it for decryption.", + 'public_key': "Enter your public RSA key. Keep the private one with you; you'll need it for decryption. " + "Please note that passphrase-protected keys are not supported.", } def clean_public_key(self):