summaryrefslogtreecommitdiff
path: root/01-basis.yml
diff options
context:
space:
mode:
Diffstat (limited to '01-basis.yml')
-rw-r--r--01-basis.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/01-basis.yml b/01-basis.yml
new file mode 100644
index 0000000..677a8e2
--- /dev/null
+++ b/01-basis.yml
@@ -0,0 +1,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'