Astroport.ONE/tools/template.sh

17 lines
586 B
Bash
Raw Normal View History

2022-12-25 17:27:07 +01:00
#shellcheck shell=sh
2022-12-25 18:11:26 +01:00
template_register_localhost() {
template_register | sed -e "s~<input type='hidden' name='salt' value='0'>~<input name='salt' value=''>~g" \
-e "s~<input type='hidden' name='pepper' value='0'>~<input name='pepper' value=''>~g"
}
template_register() {
2022-12-25 17:27:07 +01:00
sed -e "s~http://127.0.0.1:1234~${myASTROPORT}~g" \
-e "s~http://127.0.0.1:8080~${myIPFS}~g" \
-e "s~_IPFSNODEID_~${IPFSNODEID}~g" \
-e "s~_HOSTNAME_~$(hostname)~g" \
-e "s~.000.~.$(printf '%03d' $(seq 0 17 |shuf -n 1)).~g" \
~/.zen/Astroport.ONE/templates/register.html
}
2022-12-25 18:11:26 +01:00