Zuletzt aktiv 6 months ago

Änderung 5afd4c131cf90b68253567b36ba08992e2a28242

.bash_profile Originalformat
1if [ ! -f /tmp/motd.squeeze-lts.trail ]; then
2 sh /etc/cron.daily/squeeze-lts
3fi
4echo ""; echo "Not supported packages by squeeze LTS (wiki.debian.org/LTS/Development):"; echo ""
5cat /tmp/motd.squeeze-lts.trail
6
squeeze-lts Originalformat
1#!/bin/bash
2if [ "`cat /etc/debian_version | awk -F. {'print $1"."$2'}`" = "6.0" ]; then
3 if [ -x check-support-status]; then
4 check-support-status | grep "^ - " > /tmp/motd.squeeze-lts.trail
5 fi
6fi