vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Menno Duursma wrote: > On Tue, 20 Apr 2004 15:29:46 +0200, rintek wrote: > Thing i like about Swaret is not so much the dependancy checking thing, > (i disable that), rather the fact it checks MD5 and GPG of packages! > The only auto-updater there is in -currend ATM "slackpkg" didn't support > that, last time i looked at it ... A well, i just get i from the website. Hi, slackpkg can do GPG and MD5 Checking. Please, got version 1.2 in slackpkg.sf.net - GPG and MD5 checking are enabled by default. Good Luck, Piter Punk |
| ||||
| On Thu, 22 Apr 2004 12:30:55 -0700, piterpk@terra.com.br wrote: > Menno Duursma wrote: >> On Tue, 20 Apr 2004 15:29:46 +0200, rintek wrote: >> Thing i like about Swaret is not so much the dependancy checking thing, >> (i disable that), rather the fact it checks MD5 and GPG of packages! >> The only auto-updater there is in -currend ATM "slackpkg" didn't support >> that, last time i looked at it ... A well, i just get i from the website. > > Hi, slackpkg can do GPG and MD5 Checking. Please, got version 1.2 > in slackpkg.sf.net - > > GPG and MD5 checking are enabled by default. That's great! Thanks. > Good Luck, Well, looking at the code (FWIW: generally looks OK) i think i'll make some adjustments to it. For instance: /tmp is hardcoded, and i had rather it honored the environment, as i use: $ cat /etc/profile.d/tmp.sh #!/bin/sh if [ ! -d "$HOME/tmp" ]; then rm -rf "$HOME/tmp" mkdir -p "$HOME/tmp" fi chown "$USER" "$HOME/tmp" chmod 0700 "$HOME/tmp" TMPDIR="$HOME/tmp" TMP="$TMPDIR" export TMPDIR TMP -- -Menno. |