bash

Suche

Unten sind die Ergebnisse Ihrer Suche gelistet.

Erste Schritte Rund um Ansible
23 Treffer, Zuletzt geändert:
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
17 Treffer, Zuletzt geändert:
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
12 Treffer, Zuletzt geändert:
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
8 Treffer, Zuletzt geändert:
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
8 Treffer, Zuletzt geändert:
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
5 Treffer, Zuletzt geändert:
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
4 Treffer, Zuletzt geändert:
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)
4 Treffer, Zuletzt geändert:
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
3 Treffer, Zuletzt geändert:
_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
3 Treffer, Zuletzt geändert:
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
3 Treffer, Zuletzt geändert:
**''~/ansible''** an $ vim 04_repro.yml <file bash 04_repro.yml>--- - hosts: all become: true va... ansible/files/CentOS7/mailserver.guru.repo <file bash ~/ansible/files/CentOS7/mailserver.guru.repo># Re... ansible/files/CentOS8/mailserver.guru.repo <file bash ~/ansible/files/CentOS8/mailserver.guru.repo># Re
Ansible - einfaches Playbook-Beispiel: sudoers anpassen
2 Treffer, Zuletzt geändert:
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
2 Treffer, Zuletzt geändert:
*''~/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 - erweiterte Konfigurationsbeispiele: Ansible mit Hilfe von Ansible einrichten
2 Treffer, Zuletzt geändert:
ult_password' content: | #!/bin/bash # Ansible generated, do not edit manual... _when: false args: executable: /bin/bash - name: "Sicherstellen dass das File für das
Ansible cowsay: Die sprechende Kuh, oder auch mehr Getier oder doch nur puristisch mit dem Ansible Stdout Compact Logger?
2 Treffer, Zuletzt geändert:
= 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