commit | 7fe19f4d2aa5c31facca05c580ad984885258195 | [log] [tgz] |
---|---|---|
author | Jian Zhang <zhangjian.3032@bytedance.com> | Wed Jan 22 16:30:51 2025 +0800 |
committer | Adriana Kobylak <anoo@us.ibm.com> | Wed Feb 26 19:10:05 2025 +0000 |
tree | d20a6d0629735980845fedc15189f1da7e75f44c | |
parent | ccec7c673fc17f1d94f9514464ab75c4fe93a782 [diff] |
bmc: sync-once: handle deleted source files Ensure destination files are removed if the source files are deleted. Two changes are made to the sync-once script: 1. If the sync entry is not present in the source, remove it from the destination. 2. Add --delete option to rsync to remove destination files that are not present in the source. Tested For first change: 1. For directories that not present in the source, the destination directory is present. ``` ~# tree /etc/systemd/network/ /etc/systemd/network/ [error opening dir] ~# tree /run/media/rwfs-alt/cow/etc/systemd/network/ /run/media/rwfs-alt/cow/etc/systemd/network/ |-- a |-- b `-- c ``` 2. After running the sync-once script, the destination directory is removed. ``` ~# bash bmc/sync-once.sh rsync -a -R --delete /etc/hostname /run/media/rwfs-alt/cow rsync -a -R --delete /etc/machine-id /run/media/rwfs-alt/cow Removing /run/media/rwfs-alt/cow//etc/systemd/network/ ~# tree /run/media/rwfs-alt/cow/etc/systemd/network/ /run/media/rwfs-alt/cow/etc/systemd/network/ [error opening dir] ``` 3. For files that are not present in the source, the destination file is present. ``` ~# ls -l /etc/machine-id ls: cannot access '/etc/machine-id': No such file or directory ~# ls -l /run/media/rwfs-alt/cow/etc/machine-id -rw-r--r-- 1 root root 33 Feb 14 03:57 /run/media/rwfs-alt/cow/etc/machine-id ``` 4. After running the sync-once script, the destination file is removed. ``` ~# bash bmc/sync-once.sh sudo bash bmc/sync-once.sh ~# rsync -a -R --delete /etc/hostname /run/media/rwfs-alt/cow Removing /run/media/rwfs-alt/cow//etc/machine-id ~# ls -l /run/media/rwfs-alt/cow/etc/machine-id ls: cannot access '/run/media/rwfs-alt/cow/etc/machine-id': No such file or directory ``` For the second change: 1. if the destination is directory and the destination's files are not present in the source, the destination files are removed. ``` ~# tree /etc/systemd/network/ /etc/systemd/network/ |-- a `-- c ~# tree /run/media/rwfs-alt/cow/etc/systemd/network/ /run/media/rwfs-alt/cow/etc/systemd/network/ |-- a |-- b `-- c ~# bash bmc/sync-once.sh rsync -a -R --delete /etc/systemd/network/ /run/media/rwfs-alt/cow ~# tree /etc/systemd/network/ /etc/systemd/network/ |-- a `-- c ~# tree /run/media/rwfs-alt/cow/etc/systemd/network/ /run/media/rwfs-alt/cow/etc/systemd/network/ |-- a `-- c ``` Change-Id: I81f5adcf1816f1c8d0b153fa2ae4db2860daa43a Signed-off-by: Jian Zhang <zhangjian.3032@bytedance.com>
Phosphor BMC Code Management provides a set of system software management applications. More information can be found at Software Architecture
To build this package, do the following steps:
meson build
ninja -C build
To clean the repository run rm -r build
.