Skip to content

Commit

Permalink
fix nmin incorrect argument (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
jadhaj authored Aug 28, 2024
1 parent c26a21c commit cf4d330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/fcos-bastion-image/root/usr/bin/clean-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ do
fi
echo "<3>$cluster is more than 3 days old and not preserved, starting the pruning...."
prune_nodes "$cluster"
done < <(find /var/builds/ -maxdepth 1 -type d -mmin 1440+ -print0)
done < <(find /var/builds/ -maxdepth 1 -type d -mmin +1440 -print0)

# Clean up left over ports in the ovs switches that can span across multiple clusters
for port in $(ovs-vsctl show | grep "No such device" | sed -e 's/^.*device //' -e 's/ (No such.*$//')
Expand Down

0 comments on commit cf4d330

Please sign in to comment.