10 lines
257 B
Bash
Executable File
10 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for proj in cinder glance heat keystone openstack-dashboard neutron-api nova-cloud-controller nagios landscape-haproxy; do
|
|
|
|
juju config $proj --reset ssl_ca
|
|
juju config $proj --reset ssl_cert
|
|
juju config $proj --reset ssl_key
|
|
|
|
done
|