Update variable migration script for Stein

In https://review.openstack.org/598562 this script
was unintentionally left out.

Change-Id: I7fa8afdf31d9edd4a7810025a351798b5d856d47
This commit is contained in:
Jesse Pretorius 2018-10-01 12:34:20 +01:00 committed by Jesse Pretorius (odyssey4me)
parent e1aabd05b8
commit 180001718a
1 changed files with 1 additions and 1 deletions

View File

@ -65,6 +65,6 @@ if __name__ == '__main__':
flag_ref = sys.argv[2]
main(filename)
flag_file = '/etc/openstack_deploy.PIKE/VARS_MIGRATED_%s' % flag_ref
flag_file = '/etc/openstack_deploy.ROCKY/VARS_MIGRATED_%s' % flag_ref
with open(flag_file, 'w') as f:
f.write('OpenStack-Ansible variables migrated.')