Problem with special char on password field with netapp plugin
Bug #1450099 reported by
Salvo Davide Rapisarda
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Fuel Plugins |
Fix Committed
|
Undecided
|
sbartel | ||
Fuel for OpenStack |
Fix Committed
|
Undecided
|
sbartel |
Bug Description
Hi,
when I do a deploy with netapp plugin I use a password with dollar sign ($) in password.
Cinder.conf file was written correctly:
netapp_password= $password$
but without escape the dollar sign the cinder service won't work.
Salvo.
Changed in fuel: | |
assignee: | nobody → Fuel Plugin NetApp (fuel-plugin-cinder-netapp) |
Changed in fuel-plugins: | |
assignee: | nobody → Fuel Plugin NetApp (fuel-plugin-cinder-netapp) |
Changed in fuel-plugins: | |
assignee: | Fuel Plugin NetApp (fuel-plugin-cinder-netapp) → sbartel (samuel-bartel) |
Changed in fuel-plugins: | |
status: | New → Fix Committed |
To post a comment you must log in.
Hi,
you can use $$ or \$ to escape a dollar
netapp_password= $$password$$
or
netapp_password= \$password\$
Please try that and let me know