Commit 898310e6 authored by Victor Nikulshin's avatar Victor Nikulshin
Browse files

Remove SSH settings override in subtasks of fab init task

parent f2ffe949
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,10 +21,10 @@ def init():
    execute(docker.container_start)

    execute(drush.make, 'install')
    execute(drush.site_install, host='root@{}'.format(env.container_ip))
    execute(drush.site_install)
    execute(drush.aliases)

    execute(behat.init, host='root@{}'.format(env.container_ip))
    execute(behat.init)


@task