Advertisement
Guest User

Untitled

a guest
Mar 5th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. [root@higgs salt]$ salt-call --local state.highstate --force-color test=True
  2. local:
  3. ----------
  4. ID: /tmp/testfile
  5. Function: file.managed
  6. Result: None
  7. Comment: The file /tmp/testfile is set to be changed
  8. Started: 10:11:56.781347
  9. Duration: 3.199 ms
  10. Changes:
  11.  
  12. Summary for local
  13. ------------
  14. Succeeded: 1 (unchanged=1)
  15. Failed: 0
  16. ------------
  17. Total states run: 1
  18. Total run time: 3.199 ms
  19. [root@higgs salt]$ cat top.sls
  20. base:
  21. '*':
  22. - test
  23. [root@higgs salt]$ cat test/init.sls
  24. /tmp/testfile:
  25. file.managed:
  26. - contents: 'test'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement