From b34dfd078484aa42318bdb619c2310bc7a1cd56f Mon Sep 17 00:00:00 2001
From: Hyperling <me@hyperling.com>
Date: Mon, 15 Feb 2021 08:49:13 -0600
Subject: [PATCH] Ensure video and render groups exist (FreeBSD is mad).

---
 tasks/general/acct_mgmt/groups.yml | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/tasks/general/acct_mgmt/groups.yml b/tasks/general/acct_mgmt/groups.yml
index 884365d..5374099 100644
--- a/tasks/general/acct_mgmt/groups.yml
+++ b/tasks/general/acct_mgmt/groups.yml
@@ -1,7 +1,11 @@
 ---
 # Groups that do not come to all distros by default.
 
-- name: General | Account Management | Groups | Sudo (Looking at you BSD!)
+- name: General | Account Management | Groups 
   group:
-    name: sudo
-    state: present
\ No newline at end of file
+    name: "{{ item }}"
+    state: present
+  loop:
+    - sudo
+    - video
+    - render
\ No newline at end of file