WIP: Beautification of backups commands (MySQL, …) #21

Draft
benpro wants to merge 4 commits from beautification-of-backups-commands into master
Showing only changes of commit f6ee14a58f - Show all commits

View file

@ -83,7 +83,7 @@ pick_server() {
salt=$(hostname | cksum | cut -d' ' -f1)
# Pick an integer between 0 and the length of the SERVERS list
# It changes each day
item=$(( ($(date +%d) + salt + increment) % list_length ))
item=$(( ($(date +%e) + salt + increment) % list_length ))
# cut starts counting fields at 1, not 0.
field=$(( item + 1 ))