Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for Plotman's age. #958

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion scripts/plotman_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ if [[ (${mode} =~ ^fullnode.* || ${mode} =~ "plotter") && (${blockchains} == 'c
cd /
git clone --branch ${PLOTMAN_BRANCH} https://github.com/guydavis/plotman.git
cd plotman
/chia-blockchain/venv/bin/python setup.py install
/chia-blockchain/venv/bin/pip install .
# Workaround for broken dependency ordering
/chia-blockchain/venv/bin/pip install pendulum~=2.1
/chia-blockchain/venv/bin/pip install packaging~=21.0
/chia-blockchain/venv/bin/pip install attrs~=21.2
/chia-blockchain/venv/bin/pip install desert~=2020.11.18
/chia-blockchain/venv/bin/pip install appdirs~=1.4
apt update && apt install -y rsync
mkdir -p /root/.chia/plotman/logs/archiving
tee /etc/logrotate.d/plotman >/dev/null <<EOF
Expand Down