2021-12-15 00:48:19 +01:00
|
|
|
win_ansible_role_base_setup
|
2021-12-14 23:53:32 +01:00
|
|
|
=============================
|
2021-12-14 21:56:12 +01:00
|
|
|
|
2022-01-02 19:04:13 +01:00
|
|
|
WINDOWS Ansible role to create a little base Setup to manage Windows 10 Enterprise Hosts
|
2021-12-20 18:20:40 +01:00
|
|
|
|
|
|
|
Requirements
|
|
|
|
----------------
|
2022-01-02 19:04:13 +01:00
|
|
|
+ A Windows 10 Host ready to get ansible deployed
|
2022-01-02 16:40:53 +01:00
|
|
|
|
|
|
|
What this role does:
|
|
|
|
---------------------
|
2022-01-02 19:04:13 +01:00
|
|
|
+ Create a 'Ansibles' Group and a 'ansible' Administrator user.
|
|
|
|
Use these variables to set a username and a password:
|
|
|
|
* ``win_base_init__created_user_name: 'ansible'``
|
|
|
|
* ``win_base_init__created_user_password: 'ChangeToSecurePassword'``
|
|
|
|
+ Set the ``inventory_hostname`` as hostname and reboots.
|
|
|
|
* Disable automatic reboot using ``win_base_init__allow_reboot: false``
|
2022-01-02 16:40:53 +01:00
|
|
|
+ Optionally setting OS description, owner and org if you define them in these variables:
|
|
|
|
- ``win_base_init__os_description: ''``
|
|
|
|
- ``win_base_init__os_organization: ''``
|
|
|
|
- ``win_base_init__os_owner: ''``
|
2022-01-02 19:04:13 +01:00
|
|
|
+ Installs some packages using chocolatey, defined in:
|
|
|
|
``win_base_init__packages: [git, Firefox, mpvio, vlc]``
|
|
|
|
+ Search for updates and log available updates to ``C:\ansible_updates.txt``. *(search only, no installation)*
|