diff --git a/roles/windows-features/tasks/main.yml b/roles/windows-features/tasks/main.yml index b524c49..e582dfb 100644 --- a/roles/windows-features/tasks/main.yml +++ b/roles/windows-features/tasks/main.yml @@ -1,13 +1,13 @@ --- # tasks file for windows-features -- name: Install Wanted Windows Features +- name: Install Desired Windows Features ansible.windows.win_feature: name: "{{ desired_features }}" state: present include_management_tools: true register: installed_features -- name: Remove Unwanted Windows Features +- name: Remove Undesired Windows Features ansible.windows.win_feature: name: "{{ undesired_features }}" state: absent