From 42da53cf49a2bd607e7a10eed15c1d786f6a08ba Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Mon, 16 Mar 2015 16:29:24 -0500 Subject: [PATCH] Add user ubuntu to group kvm during rhel setup Signed-off-by: Andrew Schoen --- roles/common/tasks/setup-redhat.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/common/tasks/setup-redhat.yml b/roles/common/tasks/setup-redhat.yml index da98778..2d61d02 100644 --- a/roles/common/tasks/setup-redhat.yml +++ b/roles/common/tasks/setup-redhat.yml @@ -32,6 +32,11 @@ path: /etc/fuse.conf mode: 0644 +- name: Add user ubuntu to group kvm + user: + name: ubuntu + group: kvm + - name: Include version specific tasks. include: redhat/rhel_7.0.yml when: ansible_distribution_version == "7.0" -- 2.39.5