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