You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
364 B
10 lines
364 B
# TODO: configure username and password (internally)
|
|
|
|
echo "Downloading password utility"
|
|
cd ${ROOTFS_DIR}/home/${FIRST_USER_NAME}/bin
|
|
curl "https://raw.githubusercontent.com/bitcoin/bitcoin/master/share/rpcauth/rpcauth.py" 2>/dev/null 1>rpcauth.py
|
|
chmod 755 rpcauth.py
|
|
|
|
on_chroot << EOF
|
|
chown -R ${FIRST_USER_NAME}:${FIRST_USER_NAME} /home/${FIRST_USER_NAME}
|
|
EOF
|
|
|