diff options
author | Dimitri Mazmanov <dimitri.mazmanov@ericsson.com> | 2017-01-31 13:45:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-31 13:45:21 +0000 |
commit | 7de25e1f3e93cc4b95b3f343b05a057d42fc86cb (patch) | |
tree | fff3808470dc326bfb17d03e31f51e68fe13f23e | |
parent | 238cb15f64a9e71562df3acea2ef886a2ace90cf (diff) | |
parent | 52182f19f32357c675fef47b458c765f82a616db (diff) |
Merge "Fix password decryption"
-rwxr-xr-x | tools/keystone/writepass.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/keystone/writepass.sh b/tools/keystone/writepass.sh index 466cd48..c4ce244 100755 --- a/tools/keystone/writepass.sh +++ b/tools/keystone/writepass.sh @@ -67,7 +67,7 @@ $option = $value } function decode_passwords() { - openssl enc -aes-256-cbc -d -a -in ${PASSWORD_FILE_ENC} -out ${PASSWORD_FILE} -k multisite + openssl enc -aes-256-cbc -d -in ${PASSWORD_FILE_ENC} -out ${PASSWORD_FILE} -k multisite } function write_controller() { |