Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save chroming/da3415a72056283cc4430c8c23fc127c to your computer and use it in GitHub Desktop.

Select an option

Save chroming/da3415a72056283cc4430c8c23fc127c to your computer and use it in GitHub Desktop.
当salt modules文件更新后自动sync all
# yum install inotify-tools
#!/bin/sh
while inotifywait -e modify /srv/salt/_modules; do
salt '172.16.184.148' saltutil.sync_all
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment