summaryrefslogtreecommitdiff
path: root/install-itzks-workstation-puppet-only
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-02-09 15:17:51 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2018-02-09 15:17:51 +0100
commitfd2ab42bcd28a11a4ed8856eed555ac026626115 (patch)
treef240f80e7588470cbd995b5654c9443c5c43f09e /install-itzks-workstation-puppet-only
parent224eae4c7318b94245fb506da6919285ffa8c7b4 (diff)
downloaditzks-install-script-fd2ab42bcd28a11a4ed8856eed555ac026626115.tar.gz
itzks-install-script-fd2ab42bcd28a11a4ed8856eed555ac026626115.tar.bz2
itzks-install-script-fd2ab42bcd28a11a4ed8856eed555ac026626115.zip
Drop outdate script parts.
Diffstat (limited to 'install-itzks-workstation-puppet-only')
-rw-r--r--install-itzks-workstation-puppet-only38
1 files changed, 0 insertions, 38 deletions
diff --git a/install-itzks-workstation-puppet-only b/install-itzks-workstation-puppet-only
deleted file mode 100644
index 48d9ae2..0000000
--- a/install-itzks-workstation-puppet-only
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-# script for installing a Debian Edu Workstation with ITZkS modifications
-
-set -e
-
-# Install puppet-agent
-echo '! Puppet-Agent installieren'
-read -p '''Bevor der Puppet-Agent installiert werden kann,
-muss der Hostname geändert werden. Es darf kein "lan" im
-Namen auftauchen, z.B. statt mw101-lan.intern muss
-es mw101.intern heißen. [ENTER] '''
-
-# Set hostname
-read -p 'Wie lautet der Hostname (ohne Domain)? ' myhost
-hostnamectl set-hostname $myhost
-
-# To be sure restart the following services
-invoke-rc.d rsyslog restart
-invoke-rc.d cron restart
-invoke-rc.d puppet restart
-
-# Install and enable puppet-agent on client
-echo '! Puppet-Agent wird installiert... '
-apt-get install puppet
-puppet agent --test
-puppet agent --enable
-read -p '''Nun mit ssh auf den tjener wechseln und dort
-mit puppet cert --list die am Master angemeldeten
-Clients auflisten.
-
-Anschließend mit puppet cert --sign <myhost>.intern
-den Puppet-Agent des Clients authorisieren. [ENTER] '''
-ssh tjener
-echo '''! FERTIG
-Die Installation
- - des Basissystems mit ITZKS-Anpassungen
- - des Puppet-Agents
-ist abgeschlossen.''' \ No newline at end of file