* [sisyphus] start process if there no it's copy
@ 2006-01-16 13:42 Alexey Morsov
2006-01-16 14:02 ` Nick S. Grechukh
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Alexey Morsov @ 2006-01-16 13:42 UTC (permalink / raw)
To: Sisyphus
[-- Attachment #1: Type: text/plain, Size: 980 bytes --]
Привет,
нужно пускать юзерскую копию ivman (ну скорее всего при старте иксов, т.е.
в ~/.xession.d/ivman я прописал
#!/bin/sh
IVMAN=`which ivman`
id=`pgrep -U morsov ivman`
#id=`ps -U morsov -u morsov u|grep ivman|grep -v sh|grep -v grep|wc -l`
echo $id
if [ '$id' -eq '0' ]
then
echo "No usermode ivman, starting"
$IVMAN
else
echo "Allready started"
fi
Но поскольку с башем не силен то что -то явно не так работает. Т.е. пока я
это пускаю просто ручкми все работает как должно, а когда оно при старте
иксов запускается, то user-copy ivman не стартует.
Что я не так в скрипте намучил?
--
С уважением,
Алексей Морсов
системный администратор ЗАО "ИК "Риком-Траст"
ICQ: 196-766-290
Jabber: samurai@www.fondmarket.ru
www.ricom.ru
www.fondmarket.ru
NP: Music is over :(
Впрочем, если целью является не рабочий Сизиф а повышение
сознательности мантейнеров, то робота лучше вообще не
использовать.
-- ldv in devel@
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 481 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [sisyphus] start process if there no it's copy
2006-01-16 13:42 [sisyphus] start process if there no it's copy Alexey Morsov
@ 2006-01-16 14:02 ` Nick S. Grechukh
2006-01-16 14:55 ` Yuriy Kashirin
2006-01-16 14:17 ` Yuriy Kashirin
2006-01-17 7:26 ` Epiphanov Sergei
2 siblings, 1 reply; 6+ messages in thread
From: Nick S. Grechukh @ 2006-01-16 14:02 UTC (permalink / raw)
To: ALT Linux Sisyphus discussion list
В сообщении от 16 января 2006 15:42 Alexey Morsov написал(a):
> нужно пускать юзерскую копию ivman (ну скорее всего при старте иксов, т.е.
IIRC, ivman сам следит за этим, и просто не запускается, если один юзерский
уже висит.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [sisyphus] start process if there no it's copy
2006-01-16 13:42 [sisyphus] start process if there no it's copy Alexey Morsov
2006-01-16 14:02 ` Nick S. Grechukh
@ 2006-01-16 14:17 ` Yuriy Kashirin
2006-01-17 9:46 ` Alexey Morsov
2006-01-17 7:26 ` Epiphanov Sergei
2 siblings, 1 reply; 6+ messages in thread
From: Yuriy Kashirin @ 2006-01-16 14:17 UTC (permalink / raw)
To: ALT Linux Sisyphus discussion list
On Monday 16 January 2006 15:42, Alexey Morsov wrote:
> Привет,
>
> нужно пускать юзерскую копию ivman (ну скорее всего при старте
> иксов, т.е. в ~/.xession.d/ivman я прописал
>
> #!/bin/sh
>
> IVMAN=`which ivman`
>
> id=`pgrep -U morsov ivman`
^^
здесь id будет содержать pid юзерского процесса, если он запущен или
будет пустой (а не содержать "0" как вы далее видимо предполагаете)
> #id=`ps -U morsov -u morsov u|grep ivman|grep -v sh|grep -v grep|wc
> -l`
>
> echo $id
>
> if [ '$id' -eq '0' ]
Исправьте условие на:
if [ -z "$id" ]
Обратите внимание на то, что кавычки двойные, а не одинарные.
> then
> echo "No usermode ivman, starting"
> $IVMAN
> else
> echo "Allready started"
> fi
>
> Но поскольку с башем не силен то что -то явно не так работает. Т.е.
> пока я это пускаю просто ручкми все работает как должно, а когда
> оно при старте иксов запускается, то user-copy ivman не стартует.
>
> Что я не так в скрипте намучил?
Но я бы делал по другому:
- id=`pgrep -U morsov ivman`
- if [ '$id' -eq '0' ]
+ if pgrep -U morsov ivman
(pgrep вернет ошибку если указанных процессов не найдет)
--
Best regards
Yuriy Kashirin
eMICT company
Kyiv, Ukraine
phone: (+38044) 206 7800
fax: (+38044) 206 7801
http://www.eMICT.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [sisyphus] start process if there no it's copy
2006-01-16 14:02 ` Nick S. Grechukh
@ 2006-01-16 14:55 ` Yuriy Kashirin
0 siblings, 0 replies; 6+ messages in thread
From: Yuriy Kashirin @ 2006-01-16 14:55 UTC (permalink / raw)
To: ALT Linux Sisyphus discussion list
On Monday 16 January 2006 16:02, Nick S. Grechukh wrote:
> В сообщении от 16 января 2006 15:42 Alexey Morsov написал(a):
> > нужно пускать юзерскую копию ivman (ну скорее всего при старте
> > иксов, т.е.
>
> IIRC, ivman сам следит за этим, и просто не запускается, если один
> юзерский уже висит.
Хм..
А мой ivman за этим не следит. Не поленился обновить на свежий
(ivman-0.6.7-alt1) чтоб проверить. Вполне позволяет запускаеть кучу
своих процессов от одного юзера
--
Best regards
Yuriy Kashirin
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [sisyphus] start process if there no it's copy
2006-01-16 13:42 [sisyphus] start process if there no it's copy Alexey Morsov
2006-01-16 14:02 ` Nick S. Grechukh
2006-01-16 14:17 ` Yuriy Kashirin
@ 2006-01-17 7:26 ` Epiphanov Sergei
2 siblings, 0 replies; 6+ messages in thread
From: Epiphanov Sergei @ 2006-01-17 7:26 UTC (permalink / raw)
To: ALT Linux Sisyphus discussion list
В сообщении от Monday 16 January 2006 16:42 Alexey Morsov написал(a):
> Привет,
>
> нужно пускать юзерскую копию ivman (ну скорее всего при старте иксов, т.е.
> в ~/.xession.d/ivman я прописал
>
> #!/bin/sh
>
> IVMAN=`which ivman`
>
> id=`pgrep -U morsov ivman`
> #id=`ps -U morsov -u morsov u|grep ivman|grep -v sh|grep -v grep|wc -l`
>
> echo $id
>
> if [ '$id' -eq '0' ]
> then
> echo "No usermode ivman, starting"
> $IVMAN
> else
> echo "Allready started"
> fi
>
> Но поскольку с башем не силен то что -то явно не так работает. Т.е. пока я
> это пускаю просто ручкми все работает как должно, а когда оно при старте
> иксов запускается, то user-copy ivman не стартует.
>
> Что я не так в скрипте намучил?
Мой вариант в .bash_profile:
(ps a|grep ivman|grep -v grep &>/dev/null) || (ivman &>/dev/null &)
--
С уважением, Епифанов Сергей
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [sisyphus] start process if there no it's copy
2006-01-16 14:17 ` Yuriy Kashirin
@ 2006-01-17 9:46 ` Alexey Morsov
0 siblings, 0 replies; 6+ messages in thread
From: Alexey Morsov @ 2006-01-17 9:46 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1: Type: text/plain, Size: 721 bytes --]
On Mon, Jan 16, 2006 at 04:17:22PM +0200, Yuriy Kashirin wrote:
> On Monday 16 January 2006 15:42, Alexey Morsov wrote:
> Но я бы делал по другому:
> - id=`pgrep -U morsov ivman`
> - if [ '$id' -eq '0' ]
> + if pgrep -U morsov ivman
>
> (pgrep вернет ошибку если указанных процессов не найдет)
Большое спасибо. Во - век живы век учись :)
--
С уважением,
Алексей Морсов
системный администратор ЗАО "ИК "Риком-Траст"
ICQ: 196-766-290
Jabber: samurai@www.fondmarket.ru
www.ricom.ru
www.fondmarket.ru
NP: Music is over :(
> Во как! Дистрибутива еще нет, а обновления уже есть :)
А вдруг кто-то бета-версию установил или просто обновился до ALM2.4 с
помощью apt-get?
-- ldv in community@
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 481 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-01-17 9:46 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-16 13:42 [sisyphus] start process if there no it's copy Alexey Morsov
2006-01-16 14:02 ` Nick S. Grechukh
2006-01-16 14:55 ` Yuriy Kashirin
2006-01-16 14:17 ` Yuriy Kashirin
2006-01-17 9:46 ` Alexey Morsov
2006-01-17 7:26 ` Epiphanov Sergei
ALT Linux Sisyphus discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/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 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
public-inbox-index sisyphus
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.sisyphus
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git