ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] anonftp
@ 2001-02-25 17:49 Ivan Zakharyaschev
  2001-02-25 23:08 ` Dmitry V. Levin
  2001-03-01 12:50 ` Ivan Zakharyaschev
  0 siblings, 2 replies; 5+ messages in thread
From: Ivan Zakharyaschev @ 2001-02-25 17:49 UTC (permalink / raw)
  To: devel

	Добрый вечер!

Сообщаю о небольшой ошибке в скриптах пакета:

mv: отсутствует аргумент указывающий на файл

$ rpm -q anonftp; rpm -q anonftp --queryformat='%{PREUN}'
anonftp-3.0-ipl16mdk
if [ $1 = 0 ]; then
        umask 077
        if grep -qs class /etc/ftpaccess && grep -vs class /etc/ftpaccess >/etc/ftpaccess.tmp; then
                cat /etc/ftpaccess.tmp >/etc/ftpaccess
                mv -f /etc/ftpaccess.tmp
        fi
        rm -f $RPM_INSTALL_PREFIX/lib/* $RPM_INSTALL_PREFIX/etc/*
fi

-- 
Best regards,
	Ivan Z.


_______________________________________________
Devel mailing list
Devel@linux.iplabs.ru
http://www.logic.ru/mailman/listinfo/devel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] anonftp
  2001-02-25 17:49 [devel] anonftp Ivan Zakharyaschev
@ 2001-02-25 23:08 ` Dmitry V. Levin
  2001-03-01 12:50 ` Ivan Zakharyaschev
  1 sibling, 0 replies; 5+ messages in thread
From: Dmitry V. Levin @ 2001-02-25 23:08 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 662 bytes --]

On Sun, Feb 25, 2001 at 08:49:16PM +0300, Ivan Zakharyaschev wrote:
> Сообщаю о небольшой ошибке в скриптах пакета:
> 
> mv: отсутствует аргумент указывающий на файл

Должно быть rm; спасибо, будет исправлено.


Regards,
	Dmitry

+-------------------------------------------------------------------------+
Dmitry V. Levin     mailto://ldv@fandra.org
Software Engineer   PGP pubkey http://www.fandra.org/users/ldv/pgpkeys.html
IPLabs Linux Team   http://linux.iplabs.ru
Fandra Project      http://www.fandra.org
+-------------------------------------------------------------------------+
UNIX is user friendly. It's just very selective about who its friends are.

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] anonftp
  2001-02-25 17:49 [devel] anonftp Ivan Zakharyaschev
  2001-02-25 23:08 ` Dmitry V. Levin
@ 2001-03-01 12:50 ` Ivan Zakharyaschev
  2001-03-01 17:48   ` Dmitry V. Levin
  1 sibling, 1 reply; 5+ messages in thread
From: Ivan Zakharyaschev @ 2001-03-01 12:50 UTC (permalink / raw)
  To: devel

Теперь другая опечатка все в том же скрипте такие ошибки:

grep: /etc/ftpaccess.tmp: No such file or directory
cat: /etc/ftpaccess.tmp: No such file or directory

В строчке

                grep -v class </etc/ftpaccess /etc/ftpaccess.tmp

не хватает ">".

-- 
Best regards,
	Ivan Z.

_______________________________________________
Devel mailing list
Devel@linux.iplabs.ru
http://www.logic.ru/mailman/listinfo/devel


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] anonftp
  2001-03-01 12:50 ` Ivan Zakharyaschev
@ 2001-03-01 17:48   ` Dmitry V. Levin
  2001-03-01 22:06     ` Ivan Zakharyaschev
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry V. Levin @ 2001-03-01 17:48 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 870 bytes --]

On Thu, Mar 01, 2001 at 03:50:13PM +0300, Ivan Zakharyaschev wrote:
> Теперь другая опечатка все в том же скрипте такие ошибки:
> 
> grep: /etc/ftpaccess.tmp: No such file or directory
> cat: /etc/ftpaccess.tmp: No such file or directory
> 
> В строчке
> 
>                 grep -v class </etc/ftpaccess /etc/ftpaccess.tmp
> 
> не хватает ">".

Забери себе этот пакет. Все равно он для ftpd-BSD и libra-FTPD не нужен.


Regards,
	Dmitry

+-------------------------------------------------------------------------+
Dmitry V. Levin     mailto://ldv@fandra.org
Software Engineer   PGP pubkey http://www.fandra.org/users/ldv/pgpkeys.html
IPLabs Linux Team   http://linux.iplabs.ru
Fandra Project      http://www.fandra.org
+-------------------------------------------------------------------------+
UNIX is user friendly. It's just very selective about who its friends are.

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [devel] anonftp
  2001-03-01 17:48   ` Dmitry V. Levin
@ 2001-03-01 22:06     ` Ivan Zakharyaschev
  0 siblings, 0 replies; 5+ messages in thread
From: Ivan Zakharyaschev @ 2001-03-01 22:06 UTC (permalink / raw)
  To: devel

On Thu, 1 Mar 2001, Dmitry V. Levin wrote:

> Забери себе этот пакет. Все равно он для ftpd-BSD и libra-FTPD не
> нужен.

Хорошо, заберу и пересоберу скоро.

-- 
Best regards,
	Ivan Z.

_______________________________________________
Devel mailing list
Devel@linux.iplabs.ru
http://www.logic.ru/mailman/listinfo/devel


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-03-01 22:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-02-25 17:49 [devel] anonftp Ivan Zakharyaschev
2001-02-25 23:08 ` Dmitry V. Levin
2001-03-01 12:50 ` Ivan Zakharyaschev
2001-03-01 17:48   ` Dmitry V. Levin
2001-03-01 22:06     ` Ivan Zakharyaschev

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