diff --git a/contrib/initrd/libnsa/26libnsa b/contrib/initrd/libnsa/26libnsa deleted file mode 100755 index 0e6c1ffe16746b6dc5bf59d425ab90ba214e00d4..0000000000000000000000000000000000000000 --- a/contrib/initrd/libnsa/26libnsa +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -PREREQ="" -DESCRIPTION="libnsa loader" - -prereqs() -{ - echo "$PREREQ" -} - -case $1 in -# get pre-requisites -prereqs) - prereqs - exit 0 - ;; -esac - -. /scripts/casper-functions -load_confmodule - -log_begin_msg "$DESCRIPTION" - -# Install libnsa -cp /lip/libnsa/libnsa.sh /root/usr/bin/ -chroot /root mkdir -m 755 -p /home/${USERNAME}/.config/autostart -cp /lip/libnsa/libnsa.desktop /root/home/${USERNAME}/.config/autostart -chroot /root chmod 755 /home/${USERNAME}/.config/autostart/libnsa.desktop -chroot /root chown -R ${USERNAME}:${USERNAME} /home/${USERNAME}/.config - -log_end_msg - diff --git a/contrib/initrd/libnsa/libnsa.desktop b/contrib/initrd/libnsa/libnsa.desktop deleted file mode 100644 index 3f5aaa6dff6bb0be9cb2e5c6ae5150671f502003..0000000000000000000000000000000000000000 --- a/contrib/initrd/libnsa/libnsa.desktop +++ /dev/null @@ -1,11 +0,0 @@ - -[Desktop Entry] -Type=Application -Exec=/bin/bash /usr/bin/libnsa.sh -Hidden=false -NoDisplay=false -X-GNOME-Autostart-enabled=true -Name[de_DE]=LIP Statistik -Name=LIP statistic -Comment[de_DE]=Speichert statistische Hardware Informationen auf dem LIP-Stick -Comment=Speichert statistische Hardware Informationen auf dem LIP-Stick diff --git a/contrib/initrd/libnsa/libnsa.sh b/contrib/initrd/libnsa/libnsa.sh deleted file mode 100755 index 74f4fa8f4c80584f1a69a0a6b513405addc5e8b8..0000000000000000000000000000000000000000 --- a/contrib/initrd/libnsa/libnsa.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -DUMPDIR="$(mktemp -d --tmpdir /cdrom/lipstats/ .stats.XXXXXXXXXXXX)" - -mkdir -p "$DUMPDIR" - -uname -a > "$DUMPDIR/uname" 2> "$DUMPDIR/uname.err" -dmidecode > "$DUMPDIR/dmidecode" 2> "$DUMPDIR/dmidecode.err" -lspci -k > "$DUMPDIR/lspci" 2> "$DUMPDIR/lspci.err" -lsusb > "$DUMPDIR/lsusb" 2> "$DUMPDIR/lsusb.err"