ソースを参照

Update main.yml

Signed-off-by: abhishek-sa1 <abhishek.sa3@dell.com>
abhishek-sa1 3 年 前
コミット
1c2d8abd6d
1 ファイル変更8 行追加0 行削除
  1. 8 0
      control_plane/roles/control_plane_security/tasks/main.yml

+ 8 - 0
control_plane/roles/control_plane_security/tasks/main.yml

@@ -14,6 +14,10 @@
 ---
 
 - block:
+    - name: Update resolv.conf to edit mode
+      command: chattr -i "{{ resolv_conf_path }}"
+      changed_when: true
+
     - block:
         - name: Check freeipa installed or not
           include_tasks: check_prerequisites.yml
@@ -63,4 +67,8 @@
     - name: Restrict nonessential programs
       include_tasks: restrict_nonessentials.yml
       when: restrict_program_status
+    
+    - name: Update resolv.conf to read mode
+      command: chattr +i "{{ resolv_conf_path }}"
+      changed_when: true
   when: enable_security_support