diff --git a/linux/compliance.yaml b/linux/compliance.yaml index 17272de..8f4635a 100644 --- a/linux/compliance.yaml +++ b/linux/compliance.yaml @@ -64,4 +64,13 @@ ansible.builtin.file: path: /root/.ssh/authorized_keys state: absent - ignore_errors: yes \ No newline at end of file + ignore_errors: yes + + # New 04/28/24: Do not use the DHCP Client ID as our MAC Address. + - name: Configure dhclient to use the MAC address of the system instead of Client ID. + blockinfile: + state: present + insertafter: EOF + dest: /etc/dhclient/dhclient.conf + marker: "# Changed by ansible playbook: Use MAC address instead of DHCP Client ID" + content: \ No newline at end of file