dever 7 년 전
부모
커밋
804a805785
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/tool/cluster.py

+ 3 - 1
src/tool/cluster.py

@@ -205,7 +205,9 @@ class Cluster_Action(Docker_Action):
 		if ckey:
 			Env.cluster(ckey)
 		ckey = Env.cluster()
-		Env.cluster('yes')
+		if not ckey:
+			ckey = 'dm_cluster'
+			Env.cluster(ckey)
 		return (ip, ckey)
 
 	@classmethod