blob: b7f7216bd644ad0c1cac40cd3a9b8da29e72d8f6 (
plain) (
tree)
|
|
#!/bin/bash
if grep "cron" <<<"$@" > /dev/null
then
i=`sed s,^./,,g <<<$0`
t=`mktemp -p "" $i.XXX.html`
status=$?
if [ ! $status -eq 0 ]
then
echo začasne datoteke ni uspelo izdelati. mktemp je končal s $status.
exit 1
fi
$0 --no-ask --colour 2>&1 | aha --black --title "`hostname` $0 cron `date`" > $t
status=$?
if [ ! $status -eq 0 ]
then
echo posodobitev ni uspela. $0 je končal s $status. izhod je dostopen na http://`hostname`.sijanec.eu/$t
fi
chmod go+r $t
exit $status
fi
set -xe
f=
a=
grep "no-sync" <<<"$@" || /usr/sbin/emaint sync --auto
grep "no-ask" <<<"$@" || a=--ask
grep "colo" <<<"$@" || f="$f --color y"
[ `hostname` = varovalka ] && f="$f --exclude=media-libs/mesa"
emerge --tree --verbose --update $f $a --newuse --changed-use --backtrack 30 --deep --with-bdeps=y --rebuilt-binaries --autounmask --autounmask-write @world
emerge --verbose $f --autounmask-write --autounmask @preserved-rebuild
emerge --depclean $f
/root/linux/dist.sh
|