From 539c9e0d994530731d294a56925afd3423af4349 Mon Sep 17 00:00:00 2001
From: vatech_seungjin <88655697+seungjinyu@users.noreply.github.com>
Date: Thu, 28 Oct 2021 07:19:10 +0900
Subject: [PATCH] added hirsute in restart network (#8134)

restarting network in ubuntu 21.04 fails and checked the restart menu and found that hirsute was missing in the argument : )
---
 roles/reset/tasks/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/reset/tasks/main.yml b/roles/reset/tasks/main.yml
index 283462bc8..737e6b151 100644
--- a/roles/reset/tasks/main.yml
+++ b/roles/reset/tasks/main.yml
@@ -388,7 +388,7 @@
       {%- else -%}
       network
       {%- endif -%}
-      {%- elif ansible_distribution == "Ubuntu" and ansible_distribution_release in ["bionic", "focal"] -%}
+      {%- elif ansible_distribution == "Ubuntu" and ansible_distribution_release in ["hirsute","bionic", "focal"] -%}
       systemd-networkd
       {%- elif ansible_os_family == "Debian" -%}
       networking
-- 
GitLab