diff options
author | Colin Guthrie <colin@mageia.org> | 2014-10-08 20:14:40 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2014-10-08 20:14:40 +0100 |
commit | b289b717a84396801bda6b0949cabbdb8299328d (patch) | |
tree | a44debe19c00eec4bb32f01729c5709d51268a4b /add-service | |
parent | 6cf50098cc6682a34b6cb9d1cc8729a78b291b34 (diff) | |
download | rpm-helper-b289b717a84396801bda6b0949cabbdb8299328d.tar rpm-helper-b289b717a84396801bda6b0949cabbdb8299328d.tar.gz rpm-helper-b289b717a84396801bda6b0949cabbdb8299328d.tar.bz2 rpm-helper-b289b717a84396801bda6b0949cabbdb8299328d.tar.xz rpm-helper-b289b717a84396801bda6b0949cabbdb8299328d.zip |
Allow add-service to defer to chkconfig when dealing xinetd services
Diffstat (limited to 'add-service')
-rwxr-xr-x | add-service | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/add-service b/add-service index 6314c76..04eb865 100755 --- a/add-service +++ b/add-service @@ -139,7 +139,8 @@ add_service() { # the legacy init script will not be enabled. # In order to enable switching back ot sysvinit, we should enable the # sysvinit scripts too. - if [ -n "$srv" -a -f /etc/rc.d/init.d/$srv ]; then + if [ -n "$srv" ]; then + if [ -f /etc/rc.d/init.d/$srv -o -f /etc/xinet.d/$srv ]; then /sbin/chkconfig --add $srv if [ -r /etc/sysconfig/system ]; then @@ -155,6 +156,7 @@ add_service() { done fi fi + fi fi } |