From b8ad2e78705a7db9e4ae433afcc60f1325549506 Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 11 Dec 2019 17:23:48 +0000 Subject: Install trainings from training repo, and ensure they are updated when bookpipeline starts --- roles/pipeliner/templates/updatepipeline.j2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'roles/pipeliner') diff --git a/roles/pipeliner/templates/updatepipeline.j2 b/roles/pipeliner/templates/updatepipeline.j2 index 9a375ca..e7b6ed4 100644 --- a/roles/pipeliner/templates/updatepipeline.j2 +++ b/roles/pipeliner/templates/updatepipeline.j2 @@ -1,5 +1,9 @@ #!/bin/sh g="/home/{{ ansible_user }}/src/go" +t="/home/{{ ansible_user }}/trainings" GOPATH="$g" go get -u rescribe.xyz/bookpipeline/... && \ -sudo cp "$g/bin/bookpipeline" /usr/local/bin/ +sudo cp "$g/bin/bookpipeline" /usr/local/bin/ || exit 1 + +cd "$t" && git pull && \ +cp "$t"/* /usr/local/share/tesseract-ocr/trainings/ -- cgit v1.2.1-24-ge1ad