* [Comm] NUT в chkconfig
@ 2012-01-18 8:55 Vladimir Karpinsky
2012-01-18 9:05 ` Andrey Liakhovets
0 siblings, 1 reply; 5+ messages in thread
From: Vladimir Karpinsky @ 2012-01-18 8:55 UTC (permalink / raw)
To: ALT Linux Community general discussions
Установлен NUT, в /etc/init.d имеются файлы upsd, upsdrv, upsmon, но в
списке служб (chkconfig --list) они отсутствуют. Заголовок, вроде имеется?
например:
$ head upsdrv -n 15
#!/bin/sh
#
# chkconfig: 2345 87 13
# description: The UPS drivers
# config: /etc/ups/
WITHOUT_RC_COMPAT=1
# Source function library.
. /etc/init.d/functions
# Source service configuration.
SourceIfNotEmpty /etc/sysconfig/upsd
LOCKFILE=/var/lock/subsys/upsdrv
$ rpm -qa | grep nut
libnut-utils-0.0-alt0.505.1.1
nut-driver-2.2.2-alt1.1
nut-2.2.2-alt1.1
nut-server-2.2.2-alt1.1
kde4-knutclient-1.0.4-alt1
nut-driver-usb-2.2.2-alt1.1
binutils-2.20.51.0.12-alt3
libgnutls26-2.10.5-alt1
libnut-0.0-alt0.505.1.1
$ uname -a
Linux pulman.spb.gsras.ru 3.0.13-std-def-alt0.M60P.1 #1 SMP Wed Dec 14
09:29:40 UTC 2011 x86_64 GNU/Linux
Как исправить?
--
С уважением,
Владимир.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Comm] NUT в chkconfig
2012-01-18 8:55 [Comm] NUT в chkconfig Vladimir Karpinsky
@ 2012-01-18 9:05 ` Andrey Liakhovets
2012-01-18 9:14 ` Vladimir Karpinsky
0 siblings, 1 reply; 5+ messages in thread
From: Andrey Liakhovets @ 2012-01-18 9:05 UTC (permalink / raw)
To: community
On Wed, 18 Jan 2012 12:55:28 +0400 Vladimir Karpinsky wrote:
>Установлен NUT, в /etc/init.d имеются файлы upsd, upsdrv, upsmon, но в списке служб (chkconfig --list) они отсутствуют.
...
Посмотрите вывод
# chkconfig upsdrv --list
Т.е., надо просто выполнить
# chkconfig upsdrv --add
и т.д.
Андрей Ляховец
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Comm] NUT в chkconfig
2012-01-18 9:05 ` Andrey Liakhovets
@ 2012-01-18 9:14 ` Vladimir Karpinsky
2012-01-18 11:35 ` Michael Shigorin
0 siblings, 1 reply; 5+ messages in thread
From: Vladimir Karpinsky @ 2012-01-18 9:14 UTC (permalink / raw)
To: community
18.01.2012 13:05, Andrey Liakhovets пишет:
> On Wed, 18 Jan 2012 12:55:28 +0400 Vladimir Karpinsky wrote:
>> Установлен NUT, в /etc/init.d имеются файлы upsd, upsdrv, upsmon, но в списке служб (chkconfig --list) они отсутствуют.
> Т.е., надо просто выполнить
> # chkconfig upsdrv --add
Спасибо. После chkconfig имя on все они появились и в rc?.d и в списке.
Остался только вопрос на будущее: "Почему большинство служб вставляются в
список автоматически, а эти нет?" Вероятно это надо сделать в процессе
установки пакетов.
--
С уважением,
Владимир.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Comm] NUT в chkconfig
2012-01-18 9:14 ` Vladimir Karpinsky
@ 2012-01-18 11:35 ` Michael Shigorin
2012-01-18 11:57 ` Vladimir Karpinsky
0 siblings, 1 reply; 5+ messages in thread
From: Michael Shigorin @ 2012-01-18 11:35 UTC (permalink / raw)
To: community
On Wed, Jan 18, 2012 at 01:14:39PM +0400, Vladimir Karpinsky wrote:
> ># chkconfig upsdrv --add
> Спасибо. После chkconfig имя on все они появились и в rc?.d и в
> списке. Остался только вопрос на будущее: "Почему большинство
> служб вставляются в список автоматически, а эти нет?" Вероятно
> это надо сделать в процессе установки пакетов.
Если при установке пакета "с нуля" не появились, то это баг
и его следует повесить (с указанием версии-сборки, на всякий).
--
---- WBR, Michael Shigorin <mike@altlinux.ru>
------ Linux.Kiev http://www.linux.kiev.ua/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Comm] NUT в chkconfig
2012-01-18 11:35 ` Michael Shigorin
@ 2012-01-18 11:57 ` Vladimir Karpinsky
0 siblings, 0 replies; 5+ messages in thread
From: Vladimir Karpinsky @ 2012-01-18 11:57 UTC (permalink / raw)
To: community
18.01.2012 15:35, Michael Shigorin пишет:
> On Wed, Jan 18, 2012 at 01:14:39PM +0400, Vladimir Karpinsky wrote:
>>> # chkconfig upsdrv --add
>> Спасибо. После chkconfig имя on все они появились и в rc?.d и в
>> списке. Остался только вопрос на будущее: "Почему большинство
>> служб вставляются в список автоматически, а эти нет?" Вероятно
>> это надо сделать в процессе установки пакетов.
>
> Если при установке пакета "с нуля" не появились, то это баг
> и его следует повесить (с указанием версии-сборки, на всякий).
#26832
--
С уважением,
Владимир.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-18 11:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-18 8:55 [Comm] NUT в chkconfig Vladimir Karpinsky
2012-01-18 9:05 ` Andrey Liakhovets
2012-01-18 9:14 ` Vladimir Karpinsky
2012-01-18 11:35 ` Michael Shigorin
2012-01-18 11:57 ` Vladimir Karpinsky
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/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 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git