"R.I.P. Deaddog" <[EMAIL PROTECTED]> writes:
> Your suggestion/problem is directly related to msec package. It'd be
> better to ask it's developer directly. Sometimes I found it annoying too
> (once it gives me segfault). Probably msec is not really complete, or
> developers have their reasons. I don't know.
ok, here is the pb:
[root@leia pixel]# chkconfig --list portmap
portmap 0:off 1:off 2:off 3:on 4:on 5:on 6:off
[root@leia pixel]# SECURE_LEVEL=4 rpm -U /RPMS/portmap-4.0-13mdk.i586.rpm
execution of portmap-4.0-13mdk script failed, exit status 1
[root@leia pixel]# chkconfig --list portmap
portmap 0:off 1:off 2:off 3:off 4:off 5:off 6:off
[root@leia pixel]# SECURE_LEVEL=2 chkconfig --add portmap
[root@leia pixel]# chkconfig --list portmap
portmap 0:off 1:off 2:off 3:on 4:on 5:on 6:off
[root@leia pixel]# SECURE_LEVEL=4 chkconfig --add portmap ; echo $?
1
[root@leia pixel]# chkconfig --list portmap
portmap 0:off 1:off 2:off 3:off 4:off 5:off 6:off
calling chkconfig --add when portmap is already "on" fails and turn it "off". It
should return succeed and don't do anything.