diff options
author | Nick White <git@njw.name> | 2019-09-02 15:04:01 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-09-02 15:04:01 +0100 |
commit | 722cc64af6e1270dc702d8e7ac40214ae159ddd2 (patch) | |
tree | aafaa7ed1341969e0ff1326a06167c7886e2969b /roles | |
parent | 332e8244d94ae28572585433377a6d1449872eb1 (diff) |
Make bookpipeline executable
Diffstat (limited to 'roles')
-rw-r--r-- | roles/pipeliner/tasks/pipeline.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roles/pipeliner/tasks/pipeline.yml b/roles/pipeliner/tasks/pipeline.yml index 852b84b..88ee52f 100644 --- a/roles/pipeliner/tasks/pipeline.yml +++ b/roles/pipeliner/tasks/pipeline.yml @@ -2,7 +2,10 @@ # TODO: locally check out and build git repo, and upload from that - name: Install pipeline tools - copy: src=/home/nick/rescribe/2018-natphil/src/go/src/rescribe.xyz/go.git/bookpipeline/cmd/bookpipeline dest=/usr/local/bin + copy: + src: /home/nick/rescribe/2018-natphil/src/go/src/rescribe.xyz/go.git/bookpipeline/cmd/bookpipeline/bookpipeline + dest: /usr/local/bin/ + mode: 0755 - name: Install systemd unit file copy: src=bookpipeline.service dest=/etc/systemd/system |