summaryrefslogtreecommitdiff
path: root/01-basis.yml
blob: 677a8e2ab786e59da9c8cba6ad2ea39109c1b0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
# Auf welchen Hosts soll das Playbook laufen? (Name oder IP)
- hosts: localhost
  # root werden?
  become: yes
  # Die Aufgaben
  tasks:
  - name: Admin-Extras installieren
    shell: 'apt-get -y install htop tmux sudo vim-nox thefuck'
  - name: Unnötiges löschen
    shell: 'apt-get -y purge nano vim-tiny'
  - name: SSH aktivieren
    shell: 'update-rc.d ssh enable'
  - name: SSH starten
    shell: 'invoke-rc.d ssh start'