Fix wrong path checked
We should check whether the file being captured actually exists. Change-Id: I12ae91ac84fdd6ff1eee195b88e257819379ce79
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -214,7 +214,7 @@ if uses_debs ; then
done
elif is_fedora; then
for f in ovn-northd ovn-controller ; do
if [ -f /etc/sysconfig/ovn-northd ]; then
if [ -f /etc/sysconfig/$f ]; then
mkdir -p $LOG_DIR/etc/sysconfig
sudo cp /etc/sysconfig/$f $LOG_DIR/etc/sysconfig/
fi
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.