(node, file_name, backup_ext='.orig.teuth')
| 195 | log.info("Updating DevStack config files to use Ceph...") |
| 196 | |
| 197 | def backup_config(node, file_name, backup_ext='.orig.teuth'): |
| 198 | node.run(args=['cp', '-f', file_name, file_name + backup_ext]) |
| 199 | |
| 200 | def update_config(config_name, config_stream, update_dict, |
| 201 | section='DEFAULT'): |
no test coverage detected