summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-04-18 19:04:08 +0300
committerLauri Ojansivu <x@xet7.org>2018-04-18 19:04:08 +0300
commit179ff7a12457be1592f04e1bdc15a5bb4fe9d398 (patch)
treefb66236407d22f5ed8ec0b5ddb77ec586b4cc611
parent5415a7c4b953bc483f02e544beb41f3368230add (diff)
downloadwekan-179ff7a12457be1592f04e1bdc15a5bb4fe9d398.tar.gz
wekan-179ff7a12457be1592f04e1bdc15a5bb4fe9d398.tar.bz2
wekan-179ff7a12457be1592f04e1bdc15a5bb4fe9d398.zip
Use curl to download 100% CPU usage fibers fixed node in snap.
-rw-r--r--snapcraft.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 1c904878..cbd2fca2 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -95,7 +95,6 @@ parts:
- capnproto
- npm
- curl
- - paxctl
- execstack
prepare: |
echo "Cleaning environment first"
@@ -111,7 +110,7 @@ parts:
# Description at https://releases.wekan.team/node.txt
# SHA256SUM: 18c99d5e79e2fe91e75157a31be30e5420787213684d4048eb91e602e092725d
echo "18c99d5e79e2fe91e75157a31be30e5420787213684d4048eb91e602e092725d node" >> node-SHASUMS256.txt.asc
- wget https://releases.wekan.team/node
+ curl https://releases.wekan.team/node -o node
# Verify Fibers patched node authenticity
echo "Fibers 100% CPU issue patched node authenticity:"
grep node node-SHASUMS256.txt.asc | shasum -a 256 -c -
@@ -119,6 +118,7 @@ parts:
chmod +x node
mv node `which node`
# DOES NOT WORK: paxctl fix.
+ # Removed from build-packages: - paxctl
#echo "Applying paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303"
#paxctl -mC `which node`
echo "Installing meteor"