linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
@ 2013-01-29 17:18 Alex Netes
       [not found] ` <20130129171850.GB2961-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Netes @ 2013-01-29 17:18 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Bart Van Assche, Doug Ledford

During opensm RPM packaging, `chkconfig --add opensmd` is called.
`chkconfig --add` creates the appropriate entry as specified by the
default values in the init script. Having opensmd run by default on boot
isn't desired.

Signed-off-by: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
 configure.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/configure.in b/configure.in
index 4515ae2..f798be2 100644
--- a/configure.in
+++ b/configure.in
@@ -18,12 +18,13 @@ AC_ARG_WITH([rdma_service],
 AC_SUBST(RDMA_SERVICE, ${with_rdma_service:-${default_rdma_service}})
 
 if { rpm -q sles-release || rpm -q openSUSE-release; } >/dev/null 2>&1; then
-   default_start="2 3 5"
    default_stop="0 1 4 6"
 else
-   default_start="2 3 4 5"
    default_stop="0 1 6"
 fi
+
+default_start="null"
+
 AC_SUBST(DEFAULT_START, $default_start)
 AC_SUBST(DEFAULT_STOP, $default_stop)
 
-- 
1.7.11.7

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found] ` <20130129171850.GB2961-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
@ 2013-01-30  8:59   ` Bart Van Assche
       [not found]     ` <5108E0F6.3060602-HInyCGIudOg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Bart Van Assche @ 2013-01-30  8:59 UTC (permalink / raw)
  To: Alex Netes; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Doug Ledford

On 01/29/13 18:18, Alex Netes wrote:
> During opensm RPM packaging, `chkconfig --add opensmd` is called.
> `chkconfig --add` creates the appropriate entry as specified by the
> default values in the init script. Having opensmd run by default on boot
> isn't desired.
>
> Signed-off-by: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> ---
>   configure.in | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/configure.in b/configure.in
> index 4515ae2..f798be2 100644
> --- a/configure.in
> +++ b/configure.in
> @@ -18,12 +18,13 @@ AC_ARG_WITH([rdma_service],
>   AC_SUBST(RDMA_SERVICE, ${with_rdma_service:-${default_rdma_service}})
>
>   if { rpm -q sles-release || rpm -q openSUSE-release; } >/dev/null 2>&1; then
> -   default_start="2 3 5"
>      default_stop="0 1 4 6"
>   else
> -   default_start="2 3 4 5"
>      default_stop="0 1 6"
>   fi
> +
> +default_start="null"
> +
>   AC_SUBST(DEFAULT_START, $default_start)
>   AC_SUBST(DEFAULT_STOP, $default_stop)

Sorry but this patch doesn't make sense to me. This patch will prevent 
anyone to enable opensm to run during boot via chkconfig. How about 
replacing the above by the (untested) patch below ?

iff --git a/opensm.spec.in b/opensm.spec.in
index 6ae525b..2325b70 100644
--- a/opensm.spec.in
+++ b/opensm.spec.in
@@ -107,13 +107,6 @@ rm -rf $RPM_BUILD_ROOT

  %post
  if [ $1 = 1 ]; then
-    if [ -e /sbin/chkconfig ]; then
-        /sbin/chkconfig --add opensmd
-    elif [ -e /usr/sbin/update-rc.d ]; then
-        /usr/sbin/update-rc.d opensmd defaults
-    else
-        /usr/lib/lsb/install_initd /etc/init.d/opensmd
-    fi
      if type systemctl >/dev/null 2>&1; then
          systemctl --system daemon-reload
      fi

Bart.

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]     ` <5108E0F6.3060602-HInyCGIudOg@public.gmane.org>
@ 2013-01-30 12:35       ` Alex Netes
  2013-01-30 15:43       ` Doug Ledford
  1 sibling, 0 replies; 12+ messages in thread
From: Alex Netes @ 2013-01-30 12:35 UTC (permalink / raw)
  To: Bart Van Assche; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, Doug Ledford

On 09:59 Wed 30 Jan     , Bart Van Assche wrote:
> On 01/29/13 18:18, Alex Netes wrote:
> >During opensm RPM packaging, `chkconfig --add opensmd` is called.
> >`chkconfig --add` creates the appropriate entry as specified by the
> >default values in the init script. Having opensmd run by default on boot
> >isn't desired.
> >
> >Signed-off-by: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> >---
> >  configure.in | 5 +++--
> >  1 file changed, 3 insertions(+), 2 deletions(-)
> >
> >diff --git a/configure.in b/configure.in
> >index 4515ae2..f798be2 100644
> >--- a/configure.in
> >+++ b/configure.in
> >@@ -18,12 +18,13 @@ AC_ARG_WITH([rdma_service],
> >  AC_SUBST(RDMA_SERVICE, ${with_rdma_service:-${default_rdma_service}})
> >
> >  if { rpm -q sles-release || rpm -q openSUSE-release; } >/dev/null 2>&1; then
> >-   default_start="2 3 5"
> >     default_stop="0 1 4 6"
> >  else
> >-   default_start="2 3 4 5"
> >     default_stop="0 1 6"
> >  fi
> >+
> >+default_start="null"
> >+
> >  AC_SUBST(DEFAULT_START, $default_start)
> >  AC_SUBST(DEFAULT_STOP, $default_stop)
> 
> Sorry but this patch doesn't make sense to me. This patch will
> prevent anyone to enable opensm to run during boot via chkconfig.
> How about replacing the above by the (untested) patch below ?
> 
> iff --git a/opensm.spec.in b/opensm.spec.in
> index 6ae525b..2325b70 100644
> --- a/opensm.spec.in
> +++ b/opensm.spec.in
> @@ -107,13 +107,6 @@ rm -rf $RPM_BUILD_ROOT
> 
>  %post
>  if [ $1 = 1 ]; then
> -    if [ -e /sbin/chkconfig ]; then
> -        /sbin/chkconfig --add opensmd
> -    elif [ -e /usr/sbin/update-rc.d ]; then
> -        /usr/sbin/update-rc.d opensmd defaults
> -    else
> -        /usr/lib/lsb/install_initd /etc/init.d/opensmd
> -    fi
>      if type systemctl >/dev/null 2>&1; then
>          systemctl --system daemon-reload
>      fi
> 
> Bart.
> 

Thanks. I was sure that you need to add the service prior to be able
to enable/disable it. Your suggestion works on RHEL/SUSE. I'll also test in on
Debian.

--Alex
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]     ` <5108E0F6.3060602-HInyCGIudOg@public.gmane.org>
  2013-01-30 12:35       ` Alex Netes
@ 2013-01-30 15:43       ` Doug Ledford
       [not found]         ` <51093F8E.10905-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  1 sibling, 1 reply; 12+ messages in thread
From: Doug Ledford @ 2013-01-30 15:43 UTC (permalink / raw)
  To: Bart Van Assche; +Cc: Alex Netes, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 01/30/13 03:59, Bart Van Assche wrote:
> On 01/29/13 18:18, Alex Netes wrote:
>> During opensm RPM packaging, `chkconfig --add opensmd` is called.
>> `chkconfig --add` creates the appropriate entry as specified by the
>> default values in the init script. Having opensmd run by default on boot
>> isn't desired.
>>
>> Signed-off-by: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>> ---
>>   configure.in | 5 +++--
>>   1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/configure.in b/configure.in
>> index 4515ae2..f798be2 100644
>> --- a/configure.in
>> +++ b/configure.in
>> @@ -18,12 +18,13 @@ AC_ARG_WITH([rdma_service],
>>   AC_SUBST(RDMA_SERVICE, ${with_rdma_service:-${default_rdma_service}})
>>
>>   if { rpm -q sles-release || rpm -q openSUSE-release; } >/dev/null
>> 2>&1; then
>> -   default_start="2 3 5"
>>      default_stop="0 1 4 6"
>>   else
>> -   default_start="2 3 4 5"
>>      default_stop="0 1 6"
>>   fi
>> +
>> +default_start="null"
>> +
>>   AC_SUBST(DEFAULT_START, $default_start)
>>   AC_SUBST(DEFAULT_STOP, $default_stop)
> 
> Sorry but this patch doesn't make sense to me. This patch will prevent
> anyone to enable opensm to run during boot via chkconfig.

It does not.  It means that chkconfig add does not create any start
links, just all kill links.  To actually enabled it, chkconfig --level
2345 opensmd on will still work.  Which was the intent: leave it off by
default, enabled by the admin.

> How about
> replacing the above by the (untested) patch below ?
> 
> iff --git a/opensm.spec.in b/opensm.spec.in
> index 6ae525b..2325b70 100644
> --- a/opensm.spec.in
> +++ b/opensm.spec.in
> @@ -107,13 +107,6 @@ rm -rf $RPM_BUILD_ROOT
> 
>  %post
>  if [ $1 = 1 ]; then
> -    if [ -e /sbin/chkconfig ]; then
> -        /sbin/chkconfig --add opensmd
> -    elif [ -e /usr/sbin/update-rc.d ]; then
> -        /usr/sbin/update-rc.d opensmd defaults
> -    else
> -        /usr/lib/lsb/install_initd /etc/init.d/opensmd
> -    fi
>      if type systemctl >/dev/null 2>&1; then
>          systemctl --system daemon-reload
>      fi

This is not the correct fix.  It leaves the init script unadded to the
system, which means chkconfig --list will not show it properly until the
user manually adds it later.


-- 
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
              GPG KeyID: 0E572FDD
	      http://people.redhat.com/dledford

Infiniband specific RPMs available at
	      http://people.redhat.com/dledford/Infiniband
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]         ` <51093F8E.10905-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2013-01-30 16:00           ` Bart Van Assche
       [not found]             ` <51094393.1060102-HInyCGIudOg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Bart Van Assche @ 2013-01-30 16:00 UTC (permalink / raw)
  To: Doug Ledford; +Cc: Alex Netes, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 01/30/13 16:43, Doug Ledford wrote:
> On 01/30/13 03:59, Bart Van Assche wrote:
>> On 01/29/13 18:18, Alex Netes wrote:
>>> During opensm RPM packaging, `chkconfig --add opensmd` is called.
>>> `chkconfig --add` creates the appropriate entry as specified by the
>>> default values in the init script. Having opensmd run by default on boot
>>> isn't desired.
>>>
>>> Signed-off-by: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>>> ---
>>>    configure.in | 5 +++--
>>>    1 file changed, 3 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/configure.in b/configure.in
>>> index 4515ae2..f798be2 100644
>>> --- a/configure.in
>>> +++ b/configure.in
>>> @@ -18,12 +18,13 @@ AC_ARG_WITH([rdma_service],
>>>    AC_SUBST(RDMA_SERVICE, ${with_rdma_service:-${default_rdma_service}})
>>>
>>>    if { rpm -q sles-release || rpm -q openSUSE-release; } >/dev/null
>>> 2>&1; then
>>> -   default_start="2 3 5"
>>>       default_stop="0 1 4 6"
>>>    else
>>> -   default_start="2 3 4 5"
>>>       default_stop="0 1 6"
>>>    fi
>>> +
>>> +default_start="null"
>>> +
>>>    AC_SUBST(DEFAULT_START, $default_start)
>>>    AC_SUBST(DEFAULT_STOP, $default_stop)
>>
>> Sorry but this patch doesn't make sense to me. This patch will prevent
>> anyone to enable opensm to run during boot via chkconfig.
>
> It does not.  It means that chkconfig add does not create any start
> links, just all kill links.  To actually enabled it, chkconfig --level
> 2345 opensmd on will still work.  Which was the intent: leave it off by
> default, enabled by the admin.
>
>> How about
>> replacing the above by the (untested) patch below ?
>>
>> iff --git a/opensm.spec.in b/opensm.spec.in
>> index 6ae525b..2325b70 100644
>> --- a/opensm.spec.in
>> +++ b/opensm.spec.in
>> @@ -107,13 +107,6 @@ rm -rf $RPM_BUILD_ROOT
>>
>>   %post
>>   if [ $1 = 1 ]; then
>> -    if [ -e /sbin/chkconfig ]; then
>> -        /sbin/chkconfig --add opensmd
>> -    elif [ -e /usr/sbin/update-rc.d ]; then
>> -        /usr/sbin/update-rc.d opensmd defaults
>> -    else
>> -        /usr/lib/lsb/install_initd /etc/init.d/opensmd
>> -    fi
>>       if type systemctl >/dev/null 2>&1; then
>>           systemctl --system daemon-reload
>>       fi
>
> This is not the correct fix.  It leaves the init script unadded to the
> system, which means chkconfig --list will not show it properly until the
> user manually adds it later.

Which convention is followed for other packages ? This is what I found in
the Fedora 18 iscsi-initiator-utils package
(http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
* iscsid.init: Default-Start: 3 4 5
* iscsi-initiator-utils.spec:
%post
/sbin/ldconfig
if [ "$1" -eq "1" ]; then
         if [ ! -f %{_sysconfdir}/iscsi/initiatorname.iscsi ]; then
                 echo "InitiatorName=`/sbin/iscsi-iname`" > 
%{_sysconfdir}/iscsi/initiatorname.iscsi
         fi
         /sbin/chkconfig --add iscsid
         /sbin/chkconfig --add iscsi
fi

Bart.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]             ` <51094393.1060102-HInyCGIudOg@public.gmane.org>
@ 2013-01-30 17:48               ` Doug Ledford
       [not found]                 ` <51095CD5.80503-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Doug Ledford @ 2013-01-30 17:48 UTC (permalink / raw)
  To: Bart Van Assche; +Cc: Alex Netes, linux-rdma-u79uwXL29TY76Z2rM5mHXA

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

On 1/30/2013 11:00 AM, Bart Van Assche wrote:
> On 01/30/13 16:43, Doug Ledford wrote:
>> On 01/30/13 03:59, Bart Van Assche wrote:
>>> On 01/29/13 18:18, Alex Netes wrote:
>>>> During opensm RPM packaging, `chkconfig --add opensmd` is called.
>>>> `chkconfig --add` creates the appropriate entry as specified by the
>>>> default values in the init script. Having opensmd run by default on
>>>> boot
>>>> isn't desired.
>>>>
>>>> Signed-off-by: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
>>>> ---
>>>>    configure.in | 5 +++--
>>>>    1 file changed, 3 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/configure.in b/configure.in
>>>> index 4515ae2..f798be2 100644
>>>> --- a/configure.in
>>>> +++ b/configure.in
>>>> @@ -18,12 +18,13 @@ AC_ARG_WITH([rdma_service],
>>>>    AC_SUBST(RDMA_SERVICE,
>>>> ${with_rdma_service:-${default_rdma_service}})
>>>>
>>>>    if { rpm -q sles-release || rpm -q openSUSE-release; } >/dev/null
>>>> 2>&1; then
>>>> -   default_start="2 3 5"
>>>>       default_stop="0 1 4 6"
>>>>    else
>>>> -   default_start="2 3 4 5"
>>>>       default_stop="0 1 6"
>>>>    fi
>>>> +
>>>> +default_start="null"
>>>> +
>>>>    AC_SUBST(DEFAULT_START, $default_start)
>>>>    AC_SUBST(DEFAULT_STOP, $default_stop)
>>>
>>> Sorry but this patch doesn't make sense to me. This patch will prevent
>>> anyone to enable opensm to run during boot via chkconfig.
>>
>> It does not.  It means that chkconfig add does not create any start
>> links, just all kill links.  To actually enabled it, chkconfig --level
>> 2345 opensmd on will still work.  Which was the intent: leave it off by
>> default, enabled by the admin.
>>
>>> How about
>>> replacing the above by the (untested) patch below ?
>>>
>>> iff --git a/opensm.spec.in b/opensm.spec.in
>>> index 6ae525b..2325b70 100644
>>> --- a/opensm.spec.in
>>> +++ b/opensm.spec.in
>>> @@ -107,13 +107,6 @@ rm -rf $RPM_BUILD_ROOT
>>>
>>>   %post
>>>   if [ $1 = 1 ]; then
>>> -    if [ -e /sbin/chkconfig ]; then
>>> -        /sbin/chkconfig --add opensmd
>>> -    elif [ -e /usr/sbin/update-rc.d ]; then
>>> -        /usr/sbin/update-rc.d opensmd defaults
>>> -    else
>>> -        /usr/lib/lsb/install_initd /etc/init.d/opensmd
>>> -    fi
>>>       if type systemctl >/dev/null 2>&1; then
>>>           systemctl --system daemon-reload
>>>       fi
>>
>> This is not the correct fix.  It leaves the init script unadded to the
>> system, which means chkconfig --list will not show it properly until the
>> user manually adds it later.
> 
> Which convention is followed for other packages ? This is what I found in
> the Fedora 18 iscsi-initiator-utils package
> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
> 
> * iscsid.init: Default-Start: 3 4 5
> * iscsi-initiator-utils.spec:

Okay, first off, any package that still uses the SysV initscripts as of
Fedora 18 is not what I would call a package that is keeping up with the
Fedora packaging guidelines or Fedora technologies.  As such, I'm not
really sure you want to use it as an example of a good package.
However, that being said, you will note in this spec file that the iSCSI
initiator package does exactly what you removed, or suggested be
removed, from the opensmd spec file.  It unilaterally adds the
initscript to the system.  The default start/stop settings are
different, but the add action is the same.

All initscripts should be added to the system, regardless of their
default start/stop settings, and the default-start and default-stop
should be used to control *how* they are added by default, and chkconfig
--level .* <scriptname> [on|off] should be used to control whether or
not they are on or off differently than their default settings.

> %post
> /sbin/ldconfig
> if [ "$1" -eq "1" ]; then
>         if [ ! -f %{_sysconfdir}/iscsi/initiatorname.iscsi ]; then
>                 echo "InitiatorName=`/sbin/iscsi-iname`" >
> %{_sysconfdir}/iscsi/initiatorname.iscsi
>         fi
>         /sbin/chkconfig --add iscsid
>         /sbin/chkconfig --add iscsi
> fi
> 
> Bart.



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]                 ` <51095CD5.80503-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2013-01-30 19:12                   ` Bart Van Assche
       [not found]                     ` <51097080.9000402-HInyCGIudOg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Bart Van Assche @ 2013-01-30 19:12 UTC (permalink / raw)
  To: Doug Ledford; +Cc: Alex Netes, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 01/30/13 18:48, Doug Ledford wrote:
> On 1/30/2013 11:00 AM, Bart Van Assche wrote:
>> Which convention is followed for other packages ? This is what I found in
>> the Fedora 18 iscsi-initiator-utils package
>> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
>>
>> * iscsid.init: Default-Start: 3 4 5
>> * iscsi-initiator-utils.spec:
>
> Okay, first off, any package that still uses the SysV initscripts as of
> Fedora 18 is not what I would call a package that is keeping up with the
> Fedora packaging guidelines or Fedora technologies.  As such, I'm not
> really sure you want to use it as an example of a good package.
> However, that being said, you will note in this spec file that the iSCSI
> initiator package does exactly what you removed, or suggested be
> removed, from the opensmd spec file.  It unilaterally adds the
> initscript to the system.  The default start/stop settings are
> different, but the add action is the same.
>
> All initscripts should be added to the system, regardless of their
> default start/stop settings, and the default-start and default-stop
> should be used to control *how* they are added by default, and chkconfig
> --level .* <scriptname> [on|off] should be used to control whether or
> not they are on or off differently than their default settings.

Thanks for the detailed reply. Regarding the purpose of the patch at the 
start of this thread: do you know whether it is LSB-compliant to use 
"Default-Start: null" or should "Default-Start" be left out entirely in 
order not to create the start links ? See e.g. 
http://refspecs.linuxbase.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html.

Bart.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]                     ` <51097080.9000402-HInyCGIudOg@public.gmane.org>
@ 2013-01-30 19:24                       ` Doug Ledford
       [not found]                         ` <5109737F.70101-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Doug Ledford @ 2013-01-30 19:24 UTC (permalink / raw)
  To: Bart Van Assche; +Cc: Alex Netes, linux-rdma-u79uwXL29TY76Z2rM5mHXA

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

On 1/30/2013 2:12 PM, Bart Van Assche wrote:
> On 01/30/13 18:48, Doug Ledford wrote:
>> On 1/30/2013 11:00 AM, Bart Van Assche wrote:
>>> Which convention is followed for other packages ? This is what I
>>> found in
>>> the Fedora 18 iscsi-initiator-utils package
>>> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
>>>
>>>
>>> * iscsid.init: Default-Start: 3 4 5
>>> * iscsi-initiator-utils.spec:
>>
>> Okay, first off, any package that still uses the SysV initscripts as of
>> Fedora 18 is not what I would call a package that is keeping up with the
>> Fedora packaging guidelines or Fedora technologies.  As such, I'm not
>> really sure you want to use it as an example of a good package.
>> However, that being said, you will note in this spec file that the iSCSI
>> initiator package does exactly what you removed, or suggested be
>> removed, from the opensmd spec file.  It unilaterally adds the
>> initscript to the system.  The default start/stop settings are
>> different, but the add action is the same.
>>
>> All initscripts should be added to the system, regardless of their
>> default start/stop settings, and the default-start and default-stop
>> should be used to control *how* they are added by default, and chkconfig
>> --level .* <scriptname> [on|off] should be used to control whether or
>> not they are on or off differently than their default settings.
> 
> Thanks for the detailed reply. Regarding the purpose of the patch at the
> start of this thread: do you know whether it is LSB-compliant to use
> "Default-Start: null" or should "Default-Start" be left out entirely in
> order not to create the start links ? See e.g.
> http://refspecs.linuxbase.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html.
> 
> 
> Bart.

I've always used "Default-start:" without any listed levels, but I
haven't really tested it either and the spec is not specific about this
particular possible configuration.



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]                         ` <5109737F.70101-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2013-01-31  7:21                           ` Alex Netes
       [not found]                             ` <20130131072100.GU2961-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Netes @ 2013-01-31  7:21 UTC (permalink / raw)
  To: Doug Ledford; +Cc: Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 14:24 Wed 30 Jan     , Doug Ledford wrote:
> On 1/30/2013 2:12 PM, Bart Van Assche wrote:
> > On 01/30/13 18:48, Doug Ledford wrote:
> >> On 1/30/2013 11:00 AM, Bart Van Assche wrote:
> >>> Which convention is followed for other packages ? This is what I
> >>> found in
> >>> the Fedora 18 iscsi-initiator-utils package
> >>> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
> >>>
> >>>
> >>> * iscsid.init: Default-Start: 3 4 5
> >>> * iscsi-initiator-utils.spec:
> >>
> >> Okay, first off, any package that still uses the SysV initscripts as of
> >> Fedora 18 is not what I would call a package that is keeping up with the
> >> Fedora packaging guidelines or Fedora technologies.  As such, I'm not
> >> really sure you want to use it as an example of a good package.
> >> However, that being said, you will note in this spec file that the iSCSI
> >> initiator package does exactly what you removed, or suggested be
> >> removed, from the opensmd spec file.  It unilaterally adds the
> >> initscript to the system.  The default start/stop settings are
> >> different, but the add action is the same.
> >>
> >> All initscripts should be added to the system, regardless of their
> >> default start/stop settings, and the default-start and default-stop
> >> should be used to control *how* they are added by default, and chkconfig
> >> --level .* <scriptname> [on|off] should be used to control whether or
> >> not they are on or off differently than their default settings.
> > 
> > Thanks for the detailed reply. Regarding the purpose of the patch at the
> > start of this thread: do you know whether it is LSB-compliant to use
> > "Default-Start: null" or should "Default-Start" be left out entirely in
> > order not to create the start links ? See e.g.
> > http://refspecs.linuxbase.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html.
> > 
> > 
> > Bart.
> 
> I've always used "Default-start:" without any listed levels, but I
> haven't really tested it either and the spec is not specific about this
> particular possible configuration.
> 
> 

It's how the script was defined before. The behavior on RHEL and SLES is
different when not specifying "Default-start:". On RHEL, `chkconfig opensmd on`
adds the service to the default runlevels: 2 3 4 5. While on SLES it doesn't.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]                             ` <20130131072100.GU2961-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
@ 2013-01-31 14:20                               ` Doug Ledford
       [not found]                                 ` <510A7DAF.60802-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Doug Ledford @ 2013-01-31 14:20 UTC (permalink / raw)
  To: Alex Netes; +Cc: Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 01/31/13 02:21, Alex Netes wrote:
> On 14:24 Wed 30 Jan     , Doug Ledford wrote:
>> On 1/30/2013 2:12 PM, Bart Van Assche wrote:
>>> On 01/30/13 18:48, Doug Ledford wrote:
>>>> On 1/30/2013 11:00 AM, Bart Van Assche wrote:
>>>>> Which convention is followed for other packages ? This is what I
>>>>> found in
>>>>> the Fedora 18 iscsi-initiator-utils package
>>>>> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
>>>>>
>>>>>
>>>>> * iscsid.init: Default-Start: 3 4 5
>>>>> * iscsi-initiator-utils.spec:
>>>>
>>>> Okay, first off, any package that still uses the SysV initscripts as of
>>>> Fedora 18 is not what I would call a package that is keeping up with the
>>>> Fedora packaging guidelines or Fedora technologies.  As such, I'm not
>>>> really sure you want to use it as an example of a good package.
>>>> However, that being said, you will note in this spec file that the iSCSI
>>>> initiator package does exactly what you removed, or suggested be
>>>> removed, from the opensmd spec file.  It unilaterally adds the
>>>> initscript to the system.  The default start/stop settings are
>>>> different, but the add action is the same.
>>>>
>>>> All initscripts should be added to the system, regardless of their
>>>> default start/stop settings, and the default-start and default-stop
>>>> should be used to control *how* they are added by default, and chkconfig
>>>> --level .* <scriptname> [on|off] should be used to control whether or
>>>> not they are on or off differently than their default settings.
>>>
>>> Thanks for the detailed reply. Regarding the purpose of the patch at the
>>> start of this thread: do you know whether it is LSB-compliant to use
>>> "Default-Start: null" or should "Default-Start" be left out entirely in
>>> order not to create the start links ? See e.g.
>>> http://refspecs.linuxbase.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html.
>>>
>>>
>>> Bart.
>>
>> I've always used "Default-start:" without any listed levels, but I
>> haven't really tested it either and the spec is not specific about this
>> particular possible configuration.
>>
>>
> 
> It's how the script was defined before. The behavior on RHEL and SLES is
> different when not specifying "Default-start:". On RHEL, `chkconfig opensmd on`
> adds the service to the default runlevels: 2 3 4 5. While on SLES it doesn't.

That sounds like a bug in SLES to be honest.  chkconfig opensmd on
without --levels should follow the Default-Start: item (just like
chkconfig add opensmd).


-- 
Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
              GPG KeyID: 0E572FDD
	      http://people.redhat.com/dledford

Infiniband specific RPMs available at
	      http://people.redhat.com/dledford/Infiniband
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]                                 ` <510A7DAF.60802-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2013-02-04 15:36                                   ` Alex Netes
       [not found]                                     ` <20130204153631.GC13151-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Alex Netes @ 2013-02-04 15:36 UTC (permalink / raw)
  To: Doug Ledford; +Cc: Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 09:20 Thu 31 Jan     , Doug Ledford wrote:
> On 01/31/13 02:21, Alex Netes wrote:
> > On 14:24 Wed 30 Jan     , Doug Ledford wrote:
> >> On 1/30/2013 2:12 PM, Bart Van Assche wrote:
> >>> On 01/30/13 18:48, Doug Ledford wrote:
> >>>> On 1/30/2013 11:00 AM, Bart Van Assche wrote:
> >>>>> Which convention is followed for other packages ? This is what I
> >>>>> found in
> >>>>> the Fedora 18 iscsi-initiator-utils package
> >>>>> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
> >>>>>
> >>>>>
> >>>>> * iscsid.init: Default-Start: 3 4 5
> >>>>> * iscsi-initiator-utils.spec:
> >>>>
> >>>> Okay, first off, any package that still uses the SysV initscripts as of
> >>>> Fedora 18 is not what I would call a package that is keeping up with the
> >>>> Fedora packaging guidelines or Fedora technologies.  As such, I'm not
> >>>> really sure you want to use it as an example of a good package.
> >>>> However, that being said, you will note in this spec file that the iSCSI
> >>>> initiator package does exactly what you removed, or suggested be
> >>>> removed, from the opensmd spec file.  It unilaterally adds the
> >>>> initscript to the system.  The default start/stop settings are
> >>>> different, but the add action is the same.
> >>>>
> >>>> All initscripts should be added to the system, regardless of their
> >>>> default start/stop settings, and the default-start and default-stop
> >>>> should be used to control *how* they are added by default, and chkconfig
> >>>> --level .* <scriptname> [on|off] should be used to control whether or
> >>>> not they are on or off differently than their default settings.
> >>>
> >>> Thanks for the detailed reply. Regarding the purpose of the patch at the
> >>> start of this thread: do you know whether it is LSB-compliant to use
> >>> "Default-Start: null" or should "Default-Start" be left out entirely in
> >>> order not to create the start links ? See e.g.
> >>> http://refspecs.linuxbase.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html.
> >>>
> >>>
> >>> Bart.
> >>
> >> I've always used "Default-start:" without any listed levels, but I
> >> haven't really tested it either and the spec is not specific about this
> >> particular possible configuration.
> >>
> >>
> > 
> > It's how the script was defined before. The behavior on RHEL and SLES is
> > different when not specifying "Default-start:". On RHEL, `chkconfig opensmd on`
> > adds the service to the default runlevels: 2 3 4 5. While on SLES it doesn't.
> 
> That sounds like a bug in SLES to be honest.  chkconfig opensmd on
> without --levels should follow the Default-Start: item (just like
> chkconfig add opensmd).
> 

I think that RHEL and SLES implemented chkconfig differently. From man page of
chkconfig on RHEL: "By  default,  the  on  and off options affect only
runlevels 2, 3, 4, and 5". While in SLES nothing is mentioned regarding the
defaults. 
It's not acceptable to load opensm by default on boot, so I don't see other
choice right now except of reverting commit 01ab74450fd1227cf2dfb9219ffd697d3beb4a45
or doing something similar of what I suggested at the start of the thread.

--Alex
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script
       [not found]                                     ` <20130204153631.GC13151-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
@ 2013-02-04 16:05                                       ` Bart Van Assche
  0 siblings, 0 replies; 12+ messages in thread
From: Bart Van Assche @ 2013-02-04 16:05 UTC (permalink / raw)
  To: Alex Netes; +Cc: Doug Ledford, linux-rdma-u79uwXL29TY76Z2rM5mHXA

On 02/04/13 16:36, Alex Netes wrote:
> On 09:20 Thu 31 Jan     , Doug Ledford wrote:
>> On 01/31/13 02:21, Alex Netes wrote:
>>> On 14:24 Wed 30 Jan     , Doug Ledford wrote:
>>>> On 1/30/2013 2:12 PM, Bart Van Assche wrote:
>>>>> On 01/30/13 18:48, Doug Ledford wrote:
>>>>>> On 1/30/2013 11:00 AM, Bart Van Assche wrote:
>>>>>>> Which convention is followed for other packages ? This is what I
>>>>>>> found in
>>>>>>> the Fedora 18 iscsi-initiator-utils package
>>>>>>> (http://be.mirror.eurid.eu/fedora/linux/releases/18/Fedora/source/SRPMS/i/iscsi-initiator-utils-6.2.0.872-19.fc18.src.rpm):
>>>>>>>
>>>>>>>
>>>>>>> * iscsid.init: Default-Start: 3 4 5
>>>>>>> * iscsi-initiator-utils.spec:
>>>>>>
>>>>>> Okay, first off, any package that still uses the SysV initscripts as of
>>>>>> Fedora 18 is not what I would call a package that is keeping up with the
>>>>>> Fedora packaging guidelines or Fedora technologies.  As such, I'm not
>>>>>> really sure you want to use it as an example of a good package.
>>>>>> However, that being said, you will note in this spec file that the iSCSI
>>>>>> initiator package does exactly what you removed, or suggested be
>>>>>> removed, from the opensmd spec file.  It unilaterally adds the
>>>>>> initscript to the system.  The default start/stop settings are
>>>>>> different, but the add action is the same.
>>>>>>
>>>>>> All initscripts should be added to the system, regardless of their
>>>>>> default start/stop settings, and the default-start and default-stop
>>>>>> should be used to control *how* they are added by default, and chkconfig
>>>>>> --level .* <scriptname> [on|off] should be used to control whether or
>>>>>> not they are on or off differently than their default settings.
>>>>>
>>>>> Thanks for the detailed reply. Regarding the purpose of the patch at the
>>>>> start of this thread: do you know whether it is LSB-compliant to use
>>>>> "Default-Start: null" or should "Default-Start" be left out entirely in
>>>>> order not to create the start links ? See e.g.
>>>>> http://refspecs.linuxbase.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/initscrcomconv.html.
>>>>>
>>>>>
>>>>> Bart.
>>>>
>>>> I've always used "Default-start:" without any listed levels, but I
>>>> haven't really tested it either and the spec is not specific about this
>>>> particular possible configuration.
>>>>
>>>>
>>>
>>> It's how the script was defined before. The behavior on RHEL and SLES is
>>> different when not specifying "Default-start:". On RHEL, `chkconfig opensmd on`
>>> adds the service to the default runlevels: 2 3 4 5. While on SLES it doesn't.
>>
>> That sounds like a bug in SLES to be honest.  chkconfig opensmd on
>> without --levels should follow the Default-Start: item (just like
>> chkconfig add opensmd).
>>
>
> I think that RHEL and SLES implemented chkconfig differently. From man page of
> chkconfig on RHEL: "By  default,  the  on  and off options affect only
> runlevels 2, 3, 4, and 5". While in SLES nothing is mentioned regarding the
> defaults.
> It's not acceptable to load opensm by default on boot, so I don't see other
> choice right now except of reverting commit 01ab74450fd1227cf2dfb9219ffd697d3beb4a45
> or doing something similar of what I suggested at the start of the thread.

But why has commit 01ab744 to be reverted ? All that's needed to avoid 
that chkconfig gets enabled at boot during RPM installation is something 
like the patch at the top of this thread. Unless I'm overlooking something ?

Bart.

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2013-02-04 16:05 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-29 17:18 [PATCH] opensm/configure.in: Remove Default-Start from opensmd init script Alex Netes
     [not found] ` <20130129171850.GB2961-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
2013-01-30  8:59   ` Bart Van Assche
     [not found]     ` <5108E0F6.3060602-HInyCGIudOg@public.gmane.org>
2013-01-30 12:35       ` Alex Netes
2013-01-30 15:43       ` Doug Ledford
     [not found]         ` <51093F8E.10905-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-01-30 16:00           ` Bart Van Assche
     [not found]             ` <51094393.1060102-HInyCGIudOg@public.gmane.org>
2013-01-30 17:48               ` Doug Ledford
     [not found]                 ` <51095CD5.80503-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-01-30 19:12                   ` Bart Van Assche
     [not found]                     ` <51097080.9000402-HInyCGIudOg@public.gmane.org>
2013-01-30 19:24                       ` Doug Ledford
     [not found]                         ` <5109737F.70101-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-01-31  7:21                           ` Alex Netes
     [not found]                             ` <20130131072100.GU2961-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
2013-01-31 14:20                               ` Doug Ledford
     [not found]                                 ` <510A7DAF.60802-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2013-02-04 15:36                                   ` Alex Netes
     [not found]                                     ` <20130204153631.GC13151-iQai9MGU/dze+A/uUDamNg@public.gmane.org>
2013-02-04 16:05                                       ` Bart Van Assche

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).