aboutsummaryrefslogtreecommitdiffstats
path: root/add-service
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2005-09-10 05:24:54 +0000
committerFrederic Lepied <flepied@mandriva.com>2005-09-10 05:24:54 +0000
commitc4c1832356198b5098759b9f94dc2eca6cbdc685 (patch)
tree098b3822cc54c94b0bd09cd09d73d385cb80200a /add-service
parent96169347eca3efb7b4770d9790449405a8c1432c (diff)
downloadrpm-helper-c4c1832356198b5098759b9f94dc2eca6cbdc685.tar
rpm-helper-c4c1832356198b5098759b9f94dc2eca6cbdc685.tar.gz
rpm-helper-c4c1832356198b5098759b9f94dc2eca6cbdc685.tar.bz2
rpm-helper-c4c1832356198b5098759b9f94dc2eca6cbdc685.tar.xz
rpm-helper-c4c1832356198b5098759b9f94dc2eca6cbdc685.zip
test /etc/security/msec/server wihout taking care of $SECURE_LEVEL (bug #18409).
add by default the service to all the profiles if ADD_SERVICES_TO_CURRENT_PROFILE_ONLY isn't set in /etc/sysconfig/system.
Diffstat (limited to 'add-service')
-rwxr-xr-xadd-service57
1 files changed, 34 insertions, 23 deletions
diff --git a/add-service b/add-service
index cbf938c..1a71eff 100755
--- a/add-service
+++ b/add-service
@@ -1,6 +1,6 @@
#!/bin/sh
#---------------------------------------------------------------
-# Project : Mandrake Linux
+# Project : Mandriva Linux
# Module : rpm-helper
# File : add-service
# Version : $Id$
@@ -19,36 +19,47 @@ pkg=$1 # name of the package
num=$2 # number of packages installed
srv=$3 # name of the service
+add_chkconfig_service() {
+ srv=$1
+
+ /sbin/chkconfig --add $srv
+
+ if [ -r /etc/sysconfig/system ]; then
+ . /etc/sysconfig/system
+ fi
+
+ if [ -z "$ADD_SERVICES_TO_CURRENT_PROFILE_ONLY" ]; then
+ # add the service to all the profiles at once
+ if [ -d /etc/netprofile/profiles/default/services ]; then
+ for dir in /etc/netprofile/profiles/*/services; do
+ touch $dir/$srv
+ done
+ fi
+ fi
+}
+
add_service() {
# Add the service
if [ -r /etc/sysconfig/msec ]; then
. /etc/sysconfig/msec
fi
- if [[ -n "$SECURE_LEVEL" ]] && [[ "$SECURE_LEVEL" -gt 3 ]]; then
- # High security: add only authorized services
- LIST=/etc/security/msec/server
- # during the install the symlink isn't done so find the right file
- # by ourseleves
- if [ -n "$DURING_INSTALL" -a ! -f $LIST ]; then
- LIST=/etc/security/msec/server.$SECURE_LEVEL
- fi
- if [ -f $LIST ]; then
- if grep -q "^${srv}$" $LIST ; then
- /sbin/chkconfig --add $srv
- fi
- else
- # do an exception for initscripts services that could be installed
- # before msec and should anyway be added
- if [ $pkg = initscripts ]; then
- /sbin/chkconfig --add $srv
- else
- echo "add-service: $srv not added because /etc/security/msec/server is not present." 1>&2
- echo "You should run msec to correct that." 1>&2
- fi
+
+ # High security: add only authorized services
+ LIST=/etc/security/msec/server
+
+ # during the install the symlink isn't done so find the right file
+ # by ourselves
+ if [ -n "$DURING_INSTALL" -a ! -f $LIST ]; then
+ LIST=/etc/security/msec/server.$SECURE_LEVEL
+ fi
+
+ if [ -f $LIST ]; then
+ if grep -q "^${srv}$" $LIST ; then
+ add_chkconfig_service $srv
fi
else
# Low security: install all the services
- /sbin/chkconfig --add $srv
+ add_chkconfig_service $srv
fi
}