From 8ef4576f77ab3320b7d1ab38f7a0a8d0e79d9f31 Mon Sep 17 00:00:00 2001 From: Ivan Mikushin Date: Mon, 16 Nov 2015 17:29:41 +0500 Subject: [PATCH] test_05: bump custom docker to v1.10.0-dev --- .../test_05_custom_docker_in_persistent_console.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/rancherostest/test_05_custom_docker_in_persistent_console.py b/tests/integration/rancherostest/test_05_custom_docker_in_persistent_console.py index fcd98332..1e763a81 100644 --- a/tests/integration/rancherostest/test_05_custom_docker_in_persistent_console.py +++ b/tests/integration/rancherostest/test_05_custom_docker_in_persistent_console.py @@ -17,13 +17,13 @@ def test_system_docker_survives_custom_docker_install(qemu): assert qemu is not None u.wait_for_ssh(ssh_command) subprocess.check_call(ssh_command + ['curl', '-OL', - 'https://get.docker.com/builds/Linux/x86_64/docker-1.9.0'], + 'https://experimental.docker.com/builds/Linux/x86_64/docker-1.10.0-dev'], stderr=subprocess.STDOUT, universal_newlines=True) - subprocess.check_call(ssh_command + ['chmod', '+x', '/home/rancher/docker-1.9.0'], + subprocess.check_call(ssh_command + ['chmod', '+x', '/home/rancher/docker-1.10.0-dev'], stderr=subprocess.STDOUT, universal_newlines=True) - subprocess.check_call(ssh_command + ['sudo', 'ln', '-sf', '/home/rancher/docker-1.9.0', '/usr/bin/docker'], + subprocess.check_call(ssh_command + ['sudo', 'ln', '-sf', '/home/rancher/docker-1.10.0-dev', '/usr/bin/docker'], stderr=subprocess.STDOUT, universal_newlines=True) subprocess.check_call(ssh_command + ['sudo', 'system-docker', 'restart', 'docker'],