This repository has been archived by the owner on Dec 9, 2020. It is now read-only.
docker file gets excluded in backup_master_node.sh #1104
Labels
lifecycle/rotten
Denotes an issue or PR that has aged beyond stale and will be auto-closed.
The script
openshift-ansible-contrib/reference-architecture/day2ops/scripts/backup_master_node.sh
misses the/etc/sysconfig/docker file.
Made the following changes in theotherfiles()
method of script.Original
cp -aR /etc/sysconfig/{iptables,docker-*} \
Output:
docker-network docker-storage docker-storage-setup iptables origin-node
Recommended (changing the regex for docker)
cp -aR /etc/sysconfig/{iptables,docker*} \
Output:
docker docker-network docker-storage docker-storage-setup iptables origin-node
The text was updated successfully, but these errors were encountered: