Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To 249 ec2 user #35

Merged
merged 10 commits into from
Jul 1, 2024
8 changes: 4 additions & 4 deletions tasks/Darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
# state: present
# become: true

- name: Set autoLoginUser
- name: Set autoLoginUser for current user
community.general.osx_defaults:
domain: /Library/Preferences/com.apple.loginwindow
key: autoLoginUser
type: string
value: vagrant
value: "{{ ansible_env.USER }}"
state: present
become: true

- name: Set the autologon password # noqa: no-changed-when
- name: Set the autologon password for current user # noqa: no-changed-when
ansible.builtin.command:
cmd: kcpassword vagrant
cmd: kcpassword "{{ ansible_env.USER }}"
environment:
PATH: "/opt/homebrew/bin:/usr/local/bin:{{ ansible_env.PATH }}"
become: true
Expand Down
3 changes: 2 additions & 1 deletion vars/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
terraform_ostype: "macos"
ansible_ssh_transfer_method: scp
# ansible_python_interpreter: /usr/local/bin/python3
homebrew_user: vagrant
homebrew_user: "{{ ansible_user }}"
homebrew_taps:
- name: xfreebird/utils
- name: xcodesorg/made
current_user: "{{ lookup('env','USER') }}"

Check warning on line 9 in vars/macos.yml

View workflow job for this annotation

GitHub Actions / Linting

jinja[spacing]

Jinja2 spacing could be improved: {{ lookup('env','USER') }} -> {{ lookup('env', 'USER') }}

homebrew_installed_packages:
- kcpassword
Expand Down
Loading