Suche
Unten sind die Ergebnisse Ihrer Suche gelistet.
Volltextergebnisse:
- Bau eines Freifunk-Offloaders auf Basis eines Raspberry 4B
- dann in der Lage jede Inventardatei mit ihrer **''group_vars''** und **''host_vars''** in ein separates V... efinitionen aus der Gruppe production │ │ ├── group_vars # Verzeichnis für die Gruppenspe... efinitionen aus der Gruppe production │ ├── group_vars # Verzeichnis für die Gruppenspe... ir -p ~/ansible/inventories/{production,staging}/{group_vars,host_vars} \ ~/ansible/{librar
- Ansible - einfaches Playbook-Beispiel: Benutzer anlegen
- 83573!' tasks: - name: Make sure we have a group '{{ createuser }}' for our new admin-user '{{ createuser }}' group: name: '{{ createuser }}' gid: '{... createuser }}' with a specific uid and a primary group of '{{ createuser }}' user: name: '... rname }}' uid: '{{ createguid }}' group: '{{ createuser }}' state: present -
- Ansible - erweitertes Konfigurationsbeispiel 7: Ansible Vault
- red data file used by Ansible. This can include group_vars/ or host_vars/ inventory variables, v... er_werden_will!" > ~/ansible/inventory/produktion/group_vars/all/secrets.yml Wir haben also eine Datei, ... hner hat: $ cat ~/ansible/inventory/produktion/group_vars/all/secrets admin_password: Frueh_uebt_51... ible-vault encrypt ~/ansible/inventory/produktion/group_vars/all/secrets.yml Wir werden nun nach einem h
- Ansible - einfaches Playbook-Beispiel: Bedingtes Kopieren
- type: bool version_added: 1.1 - group Name of the group that should own the file/directory, as would be fed to `chown'. [Defau... o.conf dest: /etc/foo.conf owner: foo group: foo mode: 0644 # The same example as above,... o.conf dest: /etc/foo.conf owner: foo group: foo mode: u=rw,g=r,o=r # Another symbolic m
- Erste Schritte Rund um Ansible
- ting to use, for example, IP information from one group of servers # without having to talk to them in th... otherwise it can break module execution #network_group_modules=eos, nxos, ios, iosxr, junos, vyos # Whe... oups # Ex 1: Ungrouped hosts, specify before any group headers. ## green.example.com ## blue.example.co... collection of hosts belonging to the 'webservers' group ## [webservers] ## alpha.example.org ## beta.exa
- Ansible - erweiterte Konfigurationsbeispiele: Ansible mit Hilfe von Ansible einrichten
- st: '/home/{{ admin_user }}/.ansible.cfg' group: '{{ admin_user }}' owner: '{{ admin_user... rectory owner: '{{ admin_user }}' group: '{{ admin_user }}' mode: '0755' wi... /"} - {directory: "inventories/production/group_vars/"} - {directory: "inventories/produc... ars/"} - {directory: "inventories/staging/group_vars/"} - {directory: "inventories/stagin
- Ansible
- noarch Install Date: Sa 21 Dez 2019 20:38:39 CET Group : Unspecified Size : 311719083 Licen... [Commands] } frame "inventory" { database "Group B" { [Host n] } database "Group A" { [Host 1] [Host 2] [Host 3] ... ar/www/html/new_website mode = 755 owner = apache group = apache state = directory" Natürlich kann man a
- Ansible - Erweiterte Konfigurationsbeispiel: Inventory
- gruppenspezifischen Variablen im Verzeichnis **''group_vars''**. Diese Verzeichnisse werden von Ansible ... /production/ -d <code>inventories/production/ ├── group_vars │ └── all └── host_vars</code> Je **Grup... Verzeichnis **''~/ansible/inventories/production/group_vars''** ab. $ vim ~/ansible/inventories/production/group_vars/ffmuc.yml <file bash ~/ansible/inventories/
- Ansible - einfaches Playbook-Beispiel: mehrere Benutzer anlegen
- copy: content: "# Allows people in group wheel to run all command\n%wheel ALL=(ALL) ... /10_passwd_sudo_wheel owner: root group: root mode: "0440" validate: visu... astard Operator from Hell", "create_home": true, "group": 1020, "groups": "wheel, users", "home": "/home/... "comment": "Ruben Nausch", "create_home": true, "group": 1010, "groups": "wheel", "home": "/home/ruben",
- Ansible - einfaches Playbook-Beispiel: sudoers anpassen
- lgenden Inhalt aufweist. <code># Allows people in group wheel to run all command %wheel ALL=(ALL) ALL</co... copy: content: "# Allows people in group wheel to run all command\n%wheel ALL=(ALL) ... /10_passwd_sudo_wheel owner: root group: root mode: "0440" validate: visu... "/etc/sudoers.d/10_passwd_sudo_wheel", "gid": 0, "group": "root", "md5sum": "a7c4cc84eb0dbbf844d2a8d4fbe6
- Ansible - Erweiterte Konfigurationsbeispiel: Roles
- '{{ createuser }}' erstellen" ansible.builtin.group: # https://docs.ansible.com/ansible/latest/modules/group_module.html name: '{{ createuser }}' ... eusername }}' uid: '{{ createguid }}' group: '{{ createuser }}' state: present - nam... ns ├── inventories │ ├── production │ │ ├── group_vars │ │ ├── hosts.yml │ │ └── host_vars
- Ansible - einfaches Playbook-Beispiel: NTP-Daemon chrony installieren und konfigurieren
- 66d", "dest": "/etc/chrony.conf.orig", "gid": 0, "group": "root", "md5sum": "97078948a9e2c1b99ab3e38d26a3... c6121c5f", "dest": "/etc/chrony.conf", "gid": 0, "group": "root", "md5sum": "adde7eeb1766f7f83bd3fba6cc30... ", "KeyringMode": "private", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "infinity", "Lim
- Ansible - erweiterte Konfigurationsbeispiele: Ansible-Controll-Node und SSH-Jumphosts
- er }}/.ssh/config owner: '{{ ssh_user }}' group: '{{ ssh_user }}' mode: '0640' ... # YML Ende... eils durch **''{% for host in groups['<%%--%%HOST-GROUP-NAME%%--%%>'] %}''** und **''{% endfor %}''** ein... rt durch den Namen der Hostgruppe **''<%%--%%HOST-GROUP-NAME%%--%%>''**) Abschnitte in der **''~/.ssh/con
- Ansible - weitere Beispiele: Admin Benutzer verwalten
- le-vault encrypt ~/ansible/inventories/production/group_vars/all/admins </WRAP> Anschliessend kann man di... ble-vault create ~/ansible/inventories/production/group_vars/all/admins Dort legen wir als erstes mal ei... y: $ ansible-vault edit inventories/production/group_vars/all/admins <file c++ admins>linux_admins:
- Ansible - weitere Beispiele: Admin Benutzer verwalten (v2)
- le-vault encrypt ~/ansible/inventories/production/group_vars/all/admins </WRAP> Anschliessend kann man di... ble-vault create ~/ansible/inventories/production/group_vars/all/admins Dort legen wir als erstes mal ei... y: $ ansible-vault edit inventories/production/group_vars/all/admins <file c++ admins>linux_admins: