Closed lbussy closed 2 years ago
During the beginning of the bootstrap:
Press any key when you are ready to proceed. main: line 334: python: command not found
This is a result of checking the hashed password with python rather than python3:
python
python3
https://github.com/brewpi-remix/brewpi-tools-rmx/blob/c64bc41d3d9e58ef781b20cb6aeaa7e8b69f71db/bootstrap.sh#L334
That line needs to change to:
match=$(python3 -c 'import crypt; print(crypt.crypt("'"raspberry"'", "$6$'${salt}'"))')
During the beginning of the bootstrap:
This is a result of checking the hashed password with
python
rather thanpython3
:https://github.com/brewpi-remix/brewpi-tools-rmx/blob/c64bc41d3d9e58ef781b20cb6aeaa7e8b69f71db/bootstrap.sh#L334
That line needs to change to: