1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 07:15:41 +00:00

CLI validation for services, console, and engines

This commit is contained in:
Josh Curl
2016-11-28 16:36:23 -08:00
parent f1f41dffa2
commit cc3c78663c
5 changed files with 82 additions and 21 deletions

View File

@@ -11,6 +11,9 @@ set -ex
docker version | grep 1.10.3
sudo ros engine list | grep 1.10.3 | grep current
(sudo ros engine switch invalid 2>&1 || true) | grep "invalid is not a valid engine"
(sudo ros engine enable invalid 2>&1 || true) | grep "invalid is not a valid engine"
docker run -d --restart=always nginx
docker ps | grep nginx`)