This is needed if we want to update configurations on the device.
For each new update added in the Ansible script, we create a new tag (i.e., update_2) and a function (update_ansbile) inside the epidose/device/utils.sh is responsible to update until the latest tag.
To update up to a specific tag, a user has to add the corresponding tag in the update.sh file.
For example, echo update_3 >> /var/lib/epidose/latest_update and the update function will execute all tags from the current until the latest.
I have also updated the README file about this.
This is needed if we want to update configurations on the device. For each new update added in the Ansible script, we create a new tag (i.e., update_2) and a function (
update_ansbile
) inside theepidose/device/utils.sh
is responsible to update until the latest tag. To update up to a specific tag, a user has to add the corresponding tag in theupdate.sh
file. For example,echo update_3 >> /var/lib/epidose/latest_update
and the update function will execute all tags from the current until the latest. I have also updated the README file about this.