You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by wo...@apache.org on 2017/04/27 06:51:27 UTC

[2/5] couchdb-ci git commit: squash me

squash me


Project: http://git-wip-us.apache.org/repos/asf/couchdb-ci/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ci/commit/e9fefb6b
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ci/tree/e9fefb6b
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ci/diff/e9fefb6b

Branch: refs/heads/master
Commit: e9fefb6b21663033ea4b46354dd0bfa8538f9dc1
Parents: c68372a
Author: Joan Touzet <wo...@apache.org>
Authored: Tue Apr 11 22:04:18 2017 -0700
Committer: Joan Touzet <wo...@apache.org>
Committed: Tue Apr 11 22:04:18 2017 -0700

----------------------------------------------------------------------
 ansible/roles/common/tasks/couchdb.yml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-ci/blob/e9fefb6b/ansible/roles/common/tasks/couchdb.yml
----------------------------------------------------------------------
diff --git a/ansible/roles/common/tasks/couchdb.yml b/ansible/roles/common/tasks/couchdb.yml
index 37c748c..5e44b5d 100644
--- a/ansible/roles/common/tasks/couchdb.yml
+++ b/ansible/roles/common/tasks/couchdb.yml
@@ -15,16 +15,16 @@
 #   specific language governing permissions and limitations
 #   under the License.
 
-- name: create builder group
+- name: create build group
   group:
-    name: builder
+    name: build
     state: present
 
-- name: create builder user
+- name: create build user
   user:
-    name: builder
+    name: build
     createhome: yes
-    group: builder
+    group: build
     state: present
 
 - name: install grunt-cli
@@ -44,8 +44,8 @@
   file:
     path: /usr/src/couchdb-checkout
     state: directory
-    owner: builder
-    group: builder
+    owner: build
+    group: build
     recurse: yes
 
 # 1) `make dist` will be run in /usr/src/couchdb-checkout (this is directly
@@ -56,13 +56,13 @@
   file:
     path: /usr/src/couchdb
     state: directory
-    owner: builder
-    group: builder
+    owner: build
+    group: build
 
 - name: copy build script
   copy:
     src: build-ci.sh
-    dest: /home/builder/build-ci.sh
-    owner: builder
-    group: builder
+    dest: /home/build/build-ci.sh
+    owner: build
+    group: build
     mode: 0755