Suche
Unten sind die Ergebnisse Ihrer Suche gelistet.
Volltextergebnisse:
- Erste Schritte Rund um Ansible
- fg''**. # vim /etc/ansible/ansible.cfg <file bash /etc/ansible/ansible.cfg># config file for ansibl... d under sudo # you may need to change this to bin/bash in rare instances # if sudo is constrained #execu... r Gruppen sein # vim /etc/ansible/hosts <file bash /etc/ansible/hosts># # It should live in /etc/ans... setzen. # vim /etc/ansible/ansible.cfg <file bash /etc/ansible/ansible.cfg># config file for ansibl
- Bau eines Freifunk-Offloaders auf Basis eines Raspberry 4B
- der Hosts erfolgt via **''hosts''**-Datei: <file bash ~/ansible/inventories/production/hosts># Django :... ars/rpb4-ol-b/individual_host_specification <file bash ..inventories/production/host_vars/rpb4-ol-b/indi... inventories/production/group_vars/ffmuc/.. <file bash gateway_keys># aus https://github.com/freifunkMUC... Ex3LKh+G06Opb8/esg08aWK33A5/Ff1YXE="</file> <file bash gateway_link_adresses># aus https://github.com/fr
- Ansible - einfaches Playbook-Beispiel: mehrere Benutzer anlegen
- s Script ab. $ vim 03_create-admins.yml <file bash 03_create-admins.yml>--- - hosts: centos8 becom... . <code> $ vim includes/sudoers.yml</code> <file bash includes/sudoers.yml>--- - name: All users fr... fh", "uid": 1020}, "name": "bofh", "shell": "/bin/bash", "state": "present", "system": false, "uid": 102... n", "uid": 1010}, "name": "ruben", "shell": "/bin/bash", "state": "present", "system": false, "uid": 101
- Ansible - erweitertes Konfigurationsbeispiel 7: Ansible Vault
- t an. $ vim ~/bin/ansible_vault_password <file bash ~/bin/ansible_vault_password>#!/bin/bash /usr/bin/pass show ansible-vault-password</file> Abschliessen... e''** entsprechend. $ vim ~/.ansible.cfg <file bash ~/.ansible.cfg>... # If set, configures the path... lgendes definiert. $ vim ~/.ansible.cfg <file bash ansible.cfg>... [privilege_escalation] # Django
- Ansible - Erweiterte Konfigurationsbeispiel: Inventory
- sts''**. $ less /etc/ansible/ansible.cfg <code bash> ... [defaults] # some basic default values... ... e Ziel verwiesen. $ less ~/.ansible.cfg <code bash> some basic default values... # Generated by Ans... /ansible/inventories/production/hosts.yml> <file bash ~/ansible/inventories/production/hosts.yml>--- #Y... sible/inventories/production/inventory.yml <file bash ~/ansible/inventories/production/inventory.yml>--
- Ansible - erweiterte Konfigurationsbeispiele: Ansible-Controll-Node und SSH-Jumphosts
- onfigurationsdatei: $ vim ~/.ssh/config <file bash ~/.ssh/config># Default Werte Host * Port 22... betrachten, dann sehen wir folgende Dinge. <code bash ~/.ssh/config>... Host pml010003 Hostname 10.1... t dass wir hier einen Parameter mehr haben. <code bash ~/.ssh/config>... Host fwi Hostname 10.30.30.2... ess ~/ansible/inventories/production/hosts <file bash hosts># Generiert mit Hilfe von Ansible am 2022-0
- Ansible - weitere Beispiele: Admin Benutzer verwalten
- roups : wheel ids : 1000 shell : /bin/bash state : present ... roups : wheel ids : 1000 shell : /bin/bash state : present pwd : $6$QYCbUeY2/Eec... roups : wheel ids : 1001 shell : /bin/bash state : present pwd : $6$n9UE0JVV7T.n... roups : wheel ids : 1002 shell : /bin/bash state : present pwd : $6$nJVSYV9J17.S
- Ansible - weitere Beispiele: Admin Benutzer verwalten (v2)
- roups : wheel ids : 1000 shell : /bin/bash state : present ... roups : wheel ids : 1000 shell : /bin/bash state : present pwd : $6$QYCbUeY2/Eec... roups : wheel ids : 1001 shell : /bin/bash state : present pwd : $6$n9UE0JVV7T.n... roups : wheel ids : 1002 shell : /bin/bash state : present pwd : $6$nJVSYV9J17.S
- Ansible
- _id": "root", "ansible_user_shell": "/bin/bash", "ansible_user_uid": 0, "ansible... Der folgende Befehl prüft z.B. ob das Paket **''bash-completion''** auf allen Servern der Gruppe **all... alliert wurde: $ ansible all -m yum -a "name = bash-completion state = absent" Im folgenden Beispie
- Ansible - einfaches Playbook-Beispiel: Benutzer anlegen
- tes Script ab. $ vim 01_create-user.yml <file bash 01_create-user.yml>--- - hosts: centos8 become:... ": "/home/ruben", "name": "ruben", "shell": "/bin/bash", "state": "present", "stderr": "Creating mailbox... UID=1010, GID=1010, home=/home/ruben, shell=/bin/bash Jan 4 20:00:14 vml000090 sudo[12330]: pam_unix(s
- Ansible - einfaches Playbook-Beispiel: Bedingtes Kopieren
- **''~/ansible''** an $ vim 04_repro.yml <file bash 04_repro.yml>--- - hosts: all become: true va... im ~/ansible/files/CentOS7/nausch.org.repo <file bash ~/ansible/files/CentOS7/nausch.org.repo># Reposit... im ~/ansible/files/CentOS8/nausch.org.repo <file bash ~/ansible/files/CentOS8/nausch.org.repo># Reposit
- Ansible - einfaches Playbook-Beispiel: sudoers anpassen
- ript ab. $ vim 02_passwd_sudo_wheel.yml <file bash 02_passwd_sudo_wheel.yml>--- - hosts: centos8 b... # cat /etc/sudoers.d/10_passwd_sudo_wheel <file bash /etc/sudoers.d/10_passwd_sudo_wheel># Allows peop
- Ansible - einfaches Playbook-Beispiel: NTP-Daemon chrony installieren und konfigurieren
- *''~/ansible''** an $ vim 05_chrony.yml <file bash 05_chrony.yml>--- - hosts: centos8 become: true... le/templates/CentOS8/chrony-client.conf.j2 <file bash ~/ansible/templates/CentOS8/chrony-client.conf.j2
- Ansible cowsay: Die sprechende Kuh, oder auch mehr Getier oder doch nur puristisch mit dem Ansible Stdout Compact Logger?
- = True''** setzen. $ vim ~/.ansible.cfg <file bash ~/.ansible.cfg>... [defaults] nocows =... gins/callback''**. $ vim ~/.ansible.cfg <code bash >... # change the default callback, you can only
- Ansible - einfaches Playbook-Beispiel: Ansible und Zielhosts ohne Python
- ble''** ab. $ vim 06_change_contact.yml <file bash 06_change_contact.yml>--- - hosts: ffmuc_gluon