[tor-commits] [gettor/master] Use bin/bash

hiro at torproject.org hiro at torproject.org
Fri Sep 27 16:08:26 UTC 2019


commit 0a2d3b2b7e67835c1d4fba177dbe8d028bbc3592
Author: hiro <hiro at torproject.org>
Date:   Fri Sep 27 18:08:21 2019 +0200

    Use bin/bash
---
 roles/gettor/tasks/main.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/roles/gettor/tasks/main.yml b/roles/gettor/tasks/main.yml
index 0e192db..46727a2 100644
--- a/roles/gettor/tasks/main.yml
+++ b/roles/gettor/tasks/main.yml
@@ -38,23 +38,28 @@
   shell: source bin/activate
   args:
     chdir: "{{ gettor_path }}/venv"
+    executable: /bin/bash
 
 - name: create database
   shell: venv/bin/python3 scripts/create_db -n -c -o -f gettor.db
   args:
     chdir: "{{ gettor_path }}"
+    executable: /bin/bash
 
 - name: add links
   shell: venv/bin/python3 scripts/add_links_to_db -f gettor.db
   args:
     chdir: "{{ gettor_path }}"
+    executable: /bin/bash
 
 - name: stop gettor
   shell: ./bin gettor_service stop
   args:
     chdir: "{{ gettor_path }}"
+    executable: /bin/bash
 
 - name: start gettor
   shell: bin gettor_service start
   args:
     chdir: "{{ gettor_path }}"
+    executable: /bin/bash



More information about the tor-commits mailing list