pressly / sup

Super simple deployment tool - think of it like 'make' for a network of servers
https://pressly.github.io/sup
MIT License
2.48k stars 176 forks source link

Does sup support ansible's ranges of hosts? #178

Closed cocotyty closed 4 years ago

cocotyty commented 4 years ago

make be like: https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html#adding-ranges-of-hosts

VojtechVitek commented 4 years ago

See https://github.com/pressly/sup#network inventory. You can do something like

inventory: |
  for i in $(seq 1 100); do echo www.$i.example.com; done