Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 83dc0e36 authored by Jérémie Gaidamour's avatar Jérémie Gaidamour
Browse files

[all] Removed BMC info that was manually added to cluster YAML files - scripted

done with:

nodes=$(find . -iname "*.yaml" | grep -v nodes)

for i in $nodes
do
    echo $i
    cat $i | tr '\n' '\r' | sed 's,[ ]*bmc:[^\r]*\r[ ]*ip:[^\r]*\r[ ]*mac:[^\r]*\r,,g' | tr '\r' '\n' > $i.tmp
    mv $i.tmp $i
done
parent 4daf1564
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 1536 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment