mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17:58 +00:00
c046a9d5ed
Co-authored-by: Javier Viola <javier@parity.io>
11 lines
278 B
Bash
Executable File
11 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
if [[ $(grep "insecure-validator-i-know-what-i-do" /cfg/zombie.cmd) ]]; then
|
|
echo "insecure flag is already part of the cmd";
|
|
else
|
|
echo -n " --insecure-validator-i-know-what-i-do" >> /cfg/zombie.cmd;
|
|
fi;
|
|
|
|
echo "update-cmd" > /tmp/zombiepipe; |