ALT Linux Team development discussions
 help / color / mirror / Atom feed
From: "Alexey I. Froloff" <sir_raorn@immo.ru>
To: ALTLinux devel <devel@altlinux.ru>
Subject: Re: [devel] Re: Sisyphus for developers
Date: Wed, 8 Oct 2003 09:28:02 +0400
Message-ID: <20031008052802.GE3095@inferno.immo> (raw)
In-Reply-To: <20031007165442.GA4960@home-pool4-95.com2com.ru>


[-- Attachment #1.1: Type: text/plain, Size: 828 bytes --]

* Yura Zotov <yz@altlinux.ru> [031007 20:56]:
> Тут на память пришла старая и обкатанная технология "rsync через
> CD". У меня есть самописанные скрипты, которые получают список
> изменений, скачивают эти изменения где-нибудь халявным инетом,
> потом дома с болванки синхронизуют локальный Сизиф. На той
> машине, где будет скачивание нужно всего лишь запустить скрипт, а
> потом записать диск.
Ой. У меня тоже есть пара скриптов на эту тему. Недоделаные
правда слегка... Приаттачено.

P.S. 2ldv: только пожалуйста не надо бить меня ногами по лицу,
этим скриптам уже года два и я знаю что и как там надо зафиксить ;-)

-- 
Regards, Sir Raorn.
-------------------
Если пользователь хочет выполнять системые привилегированные задачи, то
это почти так же плохо, как и выполнение рутом пользовательских задач.
		-- ldv in sisyphus@

[-- Attachment #1.2: lmd5sum --]
[-- Type: text/plain, Size: 160 bytes --]

#!/bin/sh

while [ -n "$1" ]; do
    if [ -L "$1" ]; then
	echo "`readlink "$1" | md5sum | cut -b 1-33` $1"
    else
	md5sum "$1"
    fi
    shift
done
exit $?

[-- Attachment #1.3: makeupdate --]
[-- Type: text/plain, Size: 1175 bytes --]

#!/bin/sh

Usage() {
	cat <<EOF
Usage: ${0##*/} {--list | DATE} DIR
EOF
	exit $1
}

Exit() {
    local rc=$?
    trap '' EXIT
    rm -f -- $tmpfile
    exit $rc
}

if [ ! $# -eq 2 ]; then
	Usage 1 1>&2
fi

file=""
dir=""
what=""

export cdate=`date +%Y%m%d`

tmpfile=`mktemp ${TMPDIR-/tmp}/makeupdate.$$.XXXXXXXXXX`
trap 'Exit ' EXIT HUP INT PIPE TERM QUIT

sdate="$1"
dir="$2"

find "$dir" \( -type f -or -type l \) -print0 | xargs -0 lmd5sum |
sort -k 2 |
(if [ "$sdate" = "--list" ]; then
    cat > $cdate.list
else
    tee $cdate.list |
    diff -U0 $sdate.list - |
    perl -e '
open UPSH, ">update.sh" or die;
print UPSH "#!/bin/sh\n";
print UPSH "echo -e \"\\nMaking update to $ENV{cdate}\\n\"";
$l = 7;
while(<>) {
	chomp;
	($w, $f) = ($_ =~ /(.)[0-9a-f]{32}.\s*(\S+)/);
	next if $w !~ /[+-]/;
	if ($w =~ /-/) {
		print UPSH "rm -f \"".$f."\" && echo \"- ".$f."\"\n";
		$l++;
	} else {
		print $f."\000";
	}
}

print UPSH "\n";
print UPSH "tail +$l \"\$0\" | tar xPvf - | xargs -i echo \"+ {}\"\n";
print UPSH "apt-get update\n";
print UPSH "exit \$?;\n";
close UPSH;
' > $tmpfile
    tar cPf - --null -T $tmpfile >> update.sh
fi )
rm -f $tmpfile
trap '' EXIT
exit 0

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2003-10-08  5:28 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-07 12:49 ` Alexey Tourbin
2003-10-07 13:51   ` [devel] Re: [JT?] " Michael Shigorin
2003-10-07 16:54   ` [devel] " Yura Zotov
2003-10-08  5:28     ` Alexey I. Froloff [this message]
2003-10-07 18:02   ` Vadim V. Zhytnikov
2003-10-08  7:41   ` Marat Khairullin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20031008052802.GE3095@inferno.immo \
    --to=sir_raorn@immo.ru \
    --cc=devel@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git