Skip to content

Instantly share code, notes, and snippets.

/test.sls Secret

Created August 10, 2015 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7f7bf61774121130ba69 to your computer and use it in GitHub Desktop.
Save anonymous/7f7bf61774121130ba69 to your computer and use it in GitHub Desktop.
schedule:
cmd.run:
- name: <cmd to schedule service>
- pkg: register ## This is where I didn't know how to refer to the other cmd.run
register:
cmd.run:
- name: <cmd to register with service>
@iggy
Copy link

iggy commented Aug 10, 2015

schedule:
  cmd.run:
    - name: <cmd to schedule service>
    - require:
      - cmd: register
register:
  cmd.run:
    - name: <cmd to register with service>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment