By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 928
Collapse All | Expand All

(-)a/debian/kdm-trinity.init (-2 / +2 lines)
Lines 3-10 Link Here
3
# Provides:          x-display-manager kdm-trinity
3
# Provides:          x-display-manager kdm-trinity
4
# Required-Start:    $local_fs $remote_fs
4
# Required-Start:    $local_fs $remote_fs
5
# Required-Stop:     $local_fs $remote_fs
5
# Required-Stop:     $local_fs $remote_fs
6
# Should-Start:      console-screen
6
# Should-Start:      console-screen kbd acpid hal krb5-kdc nis
7
# Should-Stop:       console-screen
7
# Should-Stop:       console-screen kbd
8
# Default-Start:     2 3 4 5
8
# Default-Start:     2 3 4 5
9
# Default-Stop:      0 1 6
9
# Default-Stop:      0 1 6
10
# Short-Description: X display manager for Trinity
10
# Short-Description: X display manager for Trinity
(-)a/debian/kdm-trinity.postinst (-1 / +5 lines)
Lines 123-129 Link Here
123
esac
123
esac
124
124
125
if [ -x "/etc/init.d/kdm-trinity" ]; then
125
if [ -x "/etc/init.d/kdm-trinity" ]; then
126
  update-rc.d kdm-trinity defaults 13 01 >/dev/null
126
  if [ -x "`which insserv 2>/dev/null`" ]; then
127
    insserv kdm-trinity >/dev/null
128
  else
129
    update-rc.d kdm-trinity defaults 13 01 >/dev/null
130
  fi
127
fi
131
fi
128
132
129
if [ -n "$NOSTART" ]; then
133
if [ -n "$NOSTART" ]; then

Return to bug 928