File tree 7 files changed +15
-20
lines changed
7 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -36,4 +36,5 @@ galaxy_info:
36
36
- desktop
37
37
- integrationtesting
38
38
39
- dependencies : []
39
+ dependencies :
40
+ - role : ccdc.package_manager_configuration
Original file line number Diff line number Diff line change 1
1
---
2
- - name : Set up package managers for required tools
3
- ansible.builtin.include_role :
4
- name : ccdc.package_manager_configuration
5
-
6
2
- name : Install desktop environment
7
3
ansible.builtin.package :
8
4
name : " {{ package }}"
Original file line number Diff line number Diff line change 26
26
homebrew_installed_packages :
27
27
- xfreebird/utils/kcpassword
28
28
29
- # - name: Add kcpassword utility for autologin
30
- # community.general.homebrew:
31
- # name: kcpassword
32
- # state: present
33
- # become: true
34
-
35
29
- name : Set autoLoginUser for current user
36
30
community.general.osx_defaults :
37
31
domain : /Library/Preferences/com.apple.loginwindow
Original file line number Diff line number Diff line change 1
1
---
2
- - name : Set up package managers for required tools
3
- ansible.builtin.include_role :
4
- name : ccdc.package_manager_configuration
5
-
6
2
- name : Install desktop environment
7
3
ansible.builtin.package :
8
4
name : " {{ package }}"
Original file line number Diff line number Diff line change 6
6
become : true
7
7
8
8
- name : Enable autologon for vagrant
9
- ansible.windows.win_command : powershell.exe Start-Process -FilePath "C:\\ProgramData\\chocolatey\\bin\\Autologon.exe" -ArgumentList '"/accepteula" vagrant . {{ windows_autologon_password }}'
9
+ ansible.windows.win_command : >
10
+ powershell.exe Start-Process
11
+ -FilePath "C:\\ProgramData\\chocolatey\\bin\\Autologon.exe"
12
+ -ArgumentList '"/accepteula" vagrant . {{ windows_autologon_password }}'
10
13
11
14
- name : Disable screen saver
12
- ansible.windows.win_shell : Set-ItemProperty "HKCU:\Control Panel\Desktop" -Name ScreenSaveActive -Value 0 -Type DWord
15
+ ansible.windows.win_shell : >
16
+ Set-ItemProperty
17
+ "HKCU:\Control Panel\Desktop"
18
+ -Name ScreenSaveActive
19
+ -Value 0
20
+ -Type DWord
13
21
14
22
- name : Disable monitor and standby idle timeout
15
23
ansible.windows.win_command : powercfg -x -{{ timeout }} 0
Original file line number Diff line number Diff line change 1
1
---
2
- - name : Set OS-specific variables for {{ ansible_os_family }}-{{ ansible_distribution }}-{{ ansible_distribution_major_version }}
2
+ - name : Set OS-specific variables for {{ ansible_os_family }}-{{ ansible_distribution }}-{{ ansible_distribution_major_version }} # noqa: name[template]
3
3
ansible.builtin.include_vars : " {{ item }}"
4
4
with_first_found :
5
5
- files :
11
11
skip : true
12
12
tags : vars
13
13
14
- - name : Set up desktop environment on {{ ansible_os_family }}-{{ ansible_distribution }}-{{ ansible_distribution_major_version }}
14
+ - name : Set up desktop environment on {{ ansible_os_family }}-{{ ansible_distribution }}-{{ ansible_distribution_major_version }} # noqa: name[template]
15
15
ansible.builtin.include_tasks : " {{ item }}"
16
16
with_first_found :
17
17
- files :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ homebrew_user: "{{ ansible_user }}"
6
6
homebrew_taps :
7
7
- name : xfreebird/utils
8
8
- name : xcodesorg/made
9
- current_user : " {{ lookup('env','USER') }}"
9
+ current_user : " {{ lookup('env', 'USER') }}"
10
10
11
11
homebrew_installed_packages :
12
12
- kcpassword
You can’t perform that action at this time.
0 commit comments