12 lines
243 B
YAML
12 lines
243 B
YAML
- name: Benutzer mit bestimmten Shells anlegen
|
|
vars:
|
|
users:
|
|
alice: /bin/bash
|
|
bob: /bin/zsh
|
|
carol: /bin/sh
|
|
|
|
debug:
|
|
msg: "Lege neuen User an Name: {{ item.key }} Shell: {{ item.value }}"
|
|
with_dict: "{{ users }}"
|
|
|