We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cc994d commit c6f645aCopy full SHA for c6f645a
ic-os/components/init/bootstrap-ic-node/bootstrap-ic-node.sh
@@ -190,3 +190,12 @@ write_metric "guestos_node_operator_private_key_exists" \
190
"${node_operator_private_key_exists}" \
191
"Existence of a Node Operator private key indicates the node deployment method" \
192
"gauge"
193
+
194
+# temporary fix to remove existing certificates of the API BNs
195
+if [ -f /var/lib/ic/data/ic-boundary-tls.key ]; then
196
+ rm /var/lib/ic/data/ic-boundary-tls.key
197
+fi
198
199
+if [ -f /var/lib/ic/data/ic-boundary-tls.crt ]; then
200
+ rm /var/lib/ic/data/ic-boundary-tls.crt
201
0 commit comments