소스 검색

Added check for git

nee2c 4 년 전
부모
커밋
297b9d138f
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      api/LocalCalllerexample.py

+ 3 - 2
api/LocalCalllerexample.py

@@ -8,8 +8,9 @@ print(salt.cmd('*', 'test.ping'))
 for minion, ips in salt.cmd('*', 'network.ipaddrs').items():
     print(minion, ips)
 
-
-salt.cmd('*', 'pkg.install', arg=['git'])
+for minion, res in salt.cmd('*', 'pkg.version', arg=('git')):
+    if not res:
+        salt.cmd('*', 'pkg.install', arg=['git'])
 
 for minion, res in salt.cmd('*', 'git.clone', arg=['/tmp/'], kwarg={'url':'https://n1chome.uk/nee2c/salttest.git', 'name':'stest'}, full_return=True).items():
     print(minion, res)