Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
224 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: servicep
  3. # key: servicep
  4. # --
  5. service "${1:name}" do
  6. pattern "${2:pattern}"
  7. supports :status => ${3:true}, :restart => ${4:true}, :reload => ${5:true}
  8. action ${6:[ :enable, :start ]}
  9. end