summaryrefslogtreecommitdiffstats
path: root/ansible/roles/install_yajl
diff options
context:
space:
mode:
authorRoss Brattain <ross.b.brattain@intel.com>2017-09-28 21:45:42 -0700
committerRoss Brattain <ross.b.brattain@intel.com>2017-09-30 01:23:07 -0700
commit139480d2265d23729162054812988b0d9eca94d9 (patch)
tree34fe6e02689ffc4d4ae74f95a11a12a805d7190f /ansible/roles/install_yajl
parentc3c086c179c35e0b27bdfe75ac3366f4fa5d6ceb (diff)
replace ansible modules
Change-Id: Ia7c1ce781075142910a6c618a9a23f34a710dfe9 Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'ansible/roles/install_yajl')
-rw-r--r--ansible/roles/install_yajl/tasks/main.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/ansible/roles/install_yajl/tasks/main.yml b/ansible/roles/install_yajl/tasks/main.yml
index a7eb7961e..20fd958c8 100644
--- a/ansible/roles/install_yajl/tasks/main.yml
+++ b/ansible/roles/install_yajl/tasks/main.yml
@@ -23,11 +23,10 @@
chdir: "{{ yajl_path }}"
- name: "make yajl"
- my_make:
+ make:
chdir: "{{ yajl_path }}"
- name: "make install yajl"
- my_make:
+ make:
chdir: "{{ yajl_path }}"
target: install
-