Commit 9f9d4174d20b57643350cd7024a44778ddc6ab7b

Authored by Etienne Pallier
1 parent c755b87f
Exists in dev

final simplification for mac os

.gitignore
... ... @@ -54,4 +54,4 @@ src/core/pyros_django/obsconfig/fixtures/obsconfig.p
54 54 *.copy
55 55 *.modif
56 56 *.modif.*
57   -
  57 +*.moi
... ...
docker/KILL_PYROS_DOCKER_RUN
... ... @@ -4,6 +4,7 @@
4 4 OS=$(uname)
5 5 #echo $OS
6 6 if [[ $OS == "Darwin" ]] ; then
  7 + #echo "Mac OS"
7 8 docker exec pyros bash docker/$0 $1
8 9 exit
9 10 fi
... ...
docker/KILL_PYROS_DOCKER_RUN_mac deleted
... ... @@ -1,12 +0,0 @@
1   -#!/usr/bin/env bash
2   -
3   -#if no container is running
4   -if ! [ $(docker ps | grep 'pyros' | wc -l) -eq 2 ]
5   -then
6   - echo "db_pyros or pyros weren't running, starting them..."
7   - ./PYROS_DOCKER_START.bat
8   -fi
9   -
10   -#docker exec pyros bash -c docker/KILL_PYROS_DOCKER_RUN
11   -docker exec pyros bash docker/KILL_PYROS_DOCKER_RUN $1
12   -