working with salt 3003.1, what's the best way to install a new version package from salt://files/ assuming the same name and version?
I have this config below, but if I put a new package there without changing versions, it won't pick it up.
mypackage:
pkg.installed:
- reinstall: False
- source: salt://files/{{ pillar['env'] }}/deb/{{ pillar['mypackagelatest'] }}
service.running:
- enable: True
- require:
- file: /etc/mypackage/mypackage.toml
- watch:
- file: /etc/mypackage/mypackage.toml
alternatively, can I use a simple https link, no repo? thanks