Commit Graph

4 Commits

Author SHA1 Message Date
Andreas Jaeger ebe42c6e20 Retire repository
Fuel repositories are all retired in openstack namespace, retire
remaining fuel repos in x namespace since they are unused now.

This change removes all content from the repository and adds the usual
README file to point out that the repository is retired following the
process from
https://docs.openstack.org/infra/manual/drivers.html#retiring-a-project

See also
http://lists.openstack.org/pipermail/openstack-discuss/2019-December/011675.html

A related change is: https://review.opendev.org/699752 .

Change-Id: I8537c50c55b5303474fbdf70a43d459f87b02e9d
2019-12-18 20:06:05 +01:00
Igor Gajsin 15f3e8d522 prevent to execute unnecessary tasks when redeploy
Change-Id: I8c61f9a207016a8a867062fa250f5b89749d2add
2016-09-27 12:46:17 +03:00
Ruslan Khozinov ac7d1503bd Shellcheck warnings fix
In ./gen_password.sh line 5:
function gen_pass {
^-- SC2113: 'function' keyword is non-standard. Use 'foo()' instead of
'function foo'.

In ./deployment_scripts/puppet/modules/manila_auxiliary/files/meta.sh line 5:
if [[ -z $(manila type-list|grep default_share_type) ]]; then
      ^-- SC2143: Instead of [ -z $(foo | grep bar) ], use ! foo | grep -q bar .

In ./deployment_scripts/puppet/modules/manila_auxiliary/files/meta.sh line 10:
if [[ -z $(manila share-network-list| grep test_share_network) ]];then
      ^-- SC2143: Instead of [ -z $(foo | grep bar) ], use ! foo | grep -q bar .

In ./deployment_scripts/puppet/modules/manila_auxiliary/files/meta.sh line 20:
if [[ -z $(openstack flavor list|grep manila-service-flavor) ]];then
      ^-- SC2143: Instead of [ -z $(foo | grep bar) ], use ! foo | grep -q bar .

Change-Id: I7f30e99d870ceb45ca4b43f94bd456ae5891878a
2016-08-18 18:39:30 +03:00
Igor Gajsin 9c28d305c7 move generation of passwords and ssh keys to master node
Change-Id: If22761b75ed18fb95af6f43c54a7a1d50e8c109a
2016-08-17 15:12:37 +03:00