#!/bin/sh TOOLS="git squashfs-tools rsync" # TODO: lighttpd tftpd(?) for tool in $TOOLS; do echo " ###### Installiere $tool ##########" apt-get install -y $tool done # lighttpd konfigurieren # konfig: www-root = /srv/openslx/www # tftpd konfigurieren # tftp root = /srv/openslx/tftp echo " ##### Klone das mltk repository ########" git clone git://git.openslx.org/openslx-ng/tm-scripts echo "....Fertig" echo "mltk liegt nun im Verzeichnis $(pwd)/tm-scripts" echo "Extrahieren und Erstellen der Basissystemdaten:" echo "./mltk remote stage31 -b" echo "./mltk remote stage32 -b" echo "Verpacken der Daten als initramfs:" echo "./mltk server local stage31 -e stage31" echo "./mltk server local stage32 -e stage32" echo "."