소스 검색

Added LocalCaller example

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

+ 15 - 0
api/LocalCalllerexample.py

@@ -0,0 +1,15 @@
+import salt.client
+
+salt = salt.client.LocalClient()
+
+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('*', 'git.clone', arg=['/tmp/'], kwarg={'url':'https://n1chome.uk/nee2c/salttest.git', 'name':'stest'}, full_return=True).items():
+    print(minion, res)