Ignore:
Timestamp:
Oct 31, 2008, 6:34:18 AM (16 years ago)
Author:
broder
Message:

Use invoke-rc.d instead of calling init scripts directly in
invirt-base's config-init.sh

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-base/files/lib/init/config-init.sh

    r1330 r1445  
    1919      log_end_msg $?
    2020      for p in "${PARENTPACKAGE[@]}"; do
    21         /etc/init.d/"$p" "$1"
     21        invoke-rc.d "$p" "$1"
    2222      done
    2323      ;;
    2424    stop)
    2525      for p in "${PARENTPACKAGE[@]}"; do
    26         /etc/init.d/"$p" "$1"
     26        invoke-rc.d "$p" "$1"
    2727      done
    2828      ;;
Note: See TracChangeset for help on using the changeset viewer.