diff options
Diffstat (limited to 'roles/pipeliner/tasks')
-rw-r--r-- | roles/pipeliner/tasks/main.yml | 2 | ||||
-rw-r--r-- | roles/pipeliner/tasks/pipeline.yml | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/roles/pipeliner/tasks/main.yml b/roles/pipeliner/tasks/main.yml new file mode 100644 index 0000000..d9b6830 --- /dev/null +++ b/roles/pipeliner/tasks/main.yml @@ -0,0 +1,2 @@ +--- +- include: pipeline.yml diff --git a/roles/pipeliner/tasks/pipeline.yml b/roles/pipeliner/tasks/pipeline.yml new file mode 100644 index 0000000..852b84b --- /dev/null +++ b/roles/pipeliner/tasks/pipeline.yml @@ -0,0 +1,11 @@ +--- + +# 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 + +- name: Install systemd unit file + copy: src=bookpipeline.service dest=/etc/systemd/system + +- name: Enable bookpipeline service + service: name=bookpipeline enabled=true |