Skip to content

Commit f35a347

Browse files
Evgeniy LVladimir Kuklin
Evgeniy L
authored and
Vladimir Kuklin
committed
Correct postgres and cobbler bind mounts
Closes-bug: #1469399 Change-Id: I4925bc16a1787e79cd1e21d819239babfbad516e
1 parent 026d4ee commit f35a347

File tree

1 file changed

+4
-4
lines changed
  • fuel_upgrade_system/fuel_upgrade/fuel_upgrade

1 file changed

+4
-4
lines changed

fuel_upgrade_system/fuel_upgrade/fuel_upgrade/config.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -335,13 +335,13 @@ def config(update_path, admin_password):
335335
'ro': False})],
336336

337337
'volume_postgres_data': [
338-
('/var/lib/pgsql', {
339-
'bind': '{0}/postgres'.format(container_data_path),
338+
('{0}/postgres'.format(container_data_path), {
339+
'bind': '/var/lib/pgsql',
340340
'ro': False})],
341341

342342
'volume_cobbler_data': [
343-
('/var/lib/cobbler', {
344-
'bind': '{0}/cobbler'.format(container_data_path),
343+
('{0}/cobbler'.format(container_data_path), {
344+
'bind': '/var/lib/cobbler',
345345
'ro': False})],
346346
}
347347

0 commit comments

Comments
 (0)