aur helper
This commit is contained in:
@@ -22,10 +22,10 @@
|
||||
validate: "visudo -cf %s"
|
||||
when: ansible_facts['os_family'] == "Archlinux"
|
||||
|
||||
# - name: "[Arch] Install AUR helper"
|
||||
# community.general.aur:
|
||||
# name: "{{ aur_helper }}"
|
||||
# state: present
|
||||
# use: makepkg
|
||||
# become_user: "{{ aur_build_user }}"
|
||||
# when: ansible_facts['os_family'] == "Archlinux"
|
||||
- name: "[Arch] Install AUR helper"
|
||||
community.general.aur:
|
||||
name: "{{ aur_helper }}"
|
||||
state: present
|
||||
use: makepkg
|
||||
become_user: "{{ aur_build_user }}"
|
||||
when: ansible_facts['os_family'] == "Archlinux"
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
- name: base | system_setup | hostname
|
||||
hostname:
|
||||
name: "{{ hostname | default(ansible_hostname) }}"
|
||||
name: "{{ hostname | default(ansible_facts['hostname']) }}"
|
||||
@@ -25,3 +25,6 @@ vim_package: vim
|
||||
ssh_service: sshd
|
||||
|
||||
update_ca: /usr/bin/update-ca-trust
|
||||
|
||||
aur_build_user: aurbuilduser
|
||||
aur_helper: paru
|
||||
@@ -1,6 +1,6 @@
|
||||
# This file is managed by Ansible
|
||||
[global]
|
||||
netbios name = {{ ansible_hostname | upper }}
|
||||
netbios name = {{ ansible_facts['hostname'] | upper }}
|
||||
realm = {{ samba_realm }}
|
||||
server role = active directory domain controller
|
||||
workgroup = {{ samba_workgroup }}
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
- {key: "message_size_limit", value: "0"}
|
||||
- {key: "milter_default_action", value: "accept"}
|
||||
- {key: "mydestination", value: "'localhost, kashyyyk, $myhostname'"}
|
||||
- {key: "myhostname", value: "{{ hostname | default(ansible_hostname) }}"}
|
||||
- {key: "myhostname", value: "{{ hostname | default(ansible_facts['hostname']) }}"}
|
||||
- {key: "mynetworks", value: "'{{ mynetworks }}'"}
|
||||
- {key: "mynetworks_style", value: "subnet"}
|
||||
- {key: "readme_directory", value: "no"}
|
||||
|
||||
Reference in New Issue
Block a user