Strona 1 z 1

[+] Problem z uruchomieniem OpenLDAP : DNS Update failed

: 22 lipca 2014, 10:56
autor: Tschoob
Witam


Od kilku dni probuje zrobic Logowanie do linuxow przez konto AD za pomoca OpenLDAP i potrzebowalbym zeby ktos mi sprawdzil czy dobrze sa pokonfigurowane pliki bo co jakis manual w necie to inne wartosci i w pliku smb.conf i krb5.conf i w plikach pam.d a juz 3 razy zepsulem logowanie na roota poprzez ich zla konfiguracje...


Teraz mam problem bo prawdopodobnie nie dziala mi wszystko przez to ze jest za stara wersja samby i nie wiem jak ja zupdatowac z 3.5.6 do 3.6.6 ... debian squeezy 6.0.5

Kod: Zaznacz cały

[B]krb5.conf

[libdefaults]
default_realm = DOMENA.LOCAL
dns_lookup_realm = false
dns_lookup_kdc = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true [realms]

[realms]
DOMENA.LOCAL = {
kdc = domena.local
admin_server = domena.local
default_domain = domena.local
}
[domain_realm]
.domena.local = DOMENA.LOCAL
domena.local = DOMENA.LOCAL
[/B]

Kod: Zaznacz cały

[color=#000000][font=verdana]plik [/font][/color][B]smb.conf

[global]
workgroup = DOMENA
netbios name = OpenLDAP-v2
security = ads
realm = domena.local
password server = domena.local
domain logons = no
template homedir = /home/%D/%U
template shell = /bin/bash
winbind enum groups = yes
winbind enum users = yes
winbind use default domain = yes
winbind offline logon = yes
winbind separator = +
domain master = no
local master = no
prefered master = no
os level = 0
idmap config *:backend = tdb
idmap config *:range = 11000-20000
idmap config DOMENA:backend = rid
idmap config DOMENA:range=10000000-19000000


[Web]
comment = Web
path = /var/www
browsable = yes
available = yes
writeable = yes
#write list - @DOMENA+all-users
#read list - @DOMENA+all-users
guest ok = no
valid users = @DOMENA+all-users[/B]

Kod: Zaznacz cały

[color=#000000][font=verdana]# [/font][/color][B]/etc/nsswitch.conf 
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.

passwd: compat winbind
group: compat winbind
shadow: compat

hosts: files dns mdns4
networks: files

protocols: db files
services: db files
ethers: db files
rpc: db files

netgroup: nis[/B]
[code]#[/code]

Kod: Zaznacz cały

Common-auth
 
#
# /etc/pam.d/common-auth - authentication settings common to all services
#
# This file is included from other service-specific PAM config files,
# and should contain a list of the authentication modules that define
# the central authentication scheme for use on the system
# (e.g., /etc/shadow, LDAP, Kerberos, etc.).  The default is to use the
# traditional Unix authentication mechanisms.
#
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
# To take advantage of this, it is recommended that you configure any
# local modules either before or after the default block, and use
# pam-auth-update to manage selection of other modules.  See
# pam-auth-update(8) for details.
 
# here are the per-package modules (the "Primary" block)
#auth required pam_listfile.so onerr=fail item=group sense=allow file=/etc/login.group.allowed
auth    [success=3 default=ignore]      pam_krb5.so minimum_uid=1000
auth    [success=2 default=ignore]      pam_unix.so nullok_secure try_first_pass
auth    [success=1 default=ignore]      pam_winbind.so krb5_auth krb5_ccache_type=FILE cached_login try_first_pass
# here's the fallback if no module succeeds
auth    requisite                       pam_deny.so
# prime the stack with a positive return value if there isn't one already;
# this avoids us returning an error just because nothing sets a success code
# since the modules above will each just jump around
auth    required                        pam_permit.so
# and here are more per-package modules (the "Additional" block)
# end of pam-auth-update config
[code]#[/code]

Kod: Zaznacz cały

common-account
#
# /etc/pam.d/common-account - authorization settings common to all services
#
# This file is included from other service-specific PAM config files,
# and should contain a list of the authorization modules that define
# the central access policy for use on the system.  The default is to
# only deny service to users whose accounts are expired in /etc/shadow.
#
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
# To take advantage of this, it is recommended that you configure any
# local modules either before or after the default block, and use
# pam-auth-update to manage selection of other modules.  See
# pam-auth-update(8) for details.
#
 
# here are the per-package modules (the "Primary" block)
account [success=2 new_authtok_reqd=done default=ignore]        pam_unix.so
account [success=1 new_authtok_reqd=done default=ignore]        pam_winbind.so
# here's the fallback if no module succeeds
account requisite                       pam_deny.so
# prime the stack with a positive return value if there isn't one already;
# this avoids us returning an error just because nothing sets a success code
# since the modules above will each just jump around
account required                        pam_permit.so
# and here are more per-package modules (the "Additional" block)
account required                        pam_krb5.so minimum_uid=1000
# end of pam-auth-update config
[code]#[/code]

Kod: Zaznacz cały

common-session
#
# /etc/pam.d/common-session - session-related modules common to all services
#
# This file is included from other service-specific PAM config files,
# and should contain a list of modules that define tasks to be performed
# at the start and end of sessions of *any* kind (both interactive and
# non-interactive).
#
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
# To take advantage of this, it is recommended that you configure any
# local modules either before or after the default block, and use
# pam-auth-update to manage selection of other modules.  See
# pam-auth-update(8) for details.
 
# here are the per-package modules (the "Primary" block)
session [default=1]                     pam_permit.so
# here's the fallback if no module succeeds
session requisite                       pam_deny.so
# prime the stack with a positive return value if there isn't one already;
# this avoids us returning an error just because nothing sets a success code
# since the modules above will each just jump around
session required                        pam_permit.so
# and here are more per-package modules (the "Additional" block)
session optional                        pam_krb5.so minimum_uid=1000
session required        pam_unix.so
session required pam_mkhomedir.so umask=0022 skel=/etc/skel
session optional                        pam_winbind.so
# end of pam-auth-update config
[code]#[/code]

Kod: Zaznacz cały

common-password
#
# /etc/pam.d/common-password - password-related modules common to all services
#
# This file is included from other service-specific PAM config files,
# and should contain a list of modules that define the services to be
# used to change user passwords.  The default is pam_unix.
 
# Explanation of pam_unix options:
#
# The "sha512" option enables salted SHA512 passwords.  Without this option,
# the default is Unix crypt.  Prior releases used the option "md5".
#
# The "obscure" option replaces the old `OBSCURE_CHECKS_ENAB' option in
# login.defs.
#
# See the pam_unix manpage for other options.
 
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
# To take advantage of this, it is recommended that you configure any
# local modules either before or after the default block, and use
# pam-auth-update to manage selection of other modules.  See
# pam-auth-update(8) for details.
 
# here are the per-package modules (the "Primary" block)
password        [success=3 default=ignore]      pam_krb5.so minimum_uid=1000
password        [success=2 default=ignore]      pam_unix.so obscure use_authtok try_first_pass sha512
password        [success=1 default=ignore]      pam_winbind.so use_authtok try_first_pass
# here's the fallback if no module succeeds
password        requisite                       pam_deny.so
# prime the stack with a positive return value if there isn't one already;
# this avoids us returning an error just because nothing sets a success code
# since the modules above will each just jump around
password        required                        pam_permit.so
# and here are more per-package modules (the "Additional" block)
# end of pam-auth-update config
apt-get upgrade pokazuje ze nie ma nowszej samby , apt-update tak samo ;/
wczroaj udalo mi sie jakos zalogowac to po zalogowaniu i komendzie

net join ads -u user
poprosilo o haslo , zalogowalo a nastepnie pokazalo komunikac ze DNS update failed. I wtedy wlasnie kolega mi powiedzial ze cos nie tak z wersja samby ( mam debiana 6.0.5 i sambe 3.5.6 )

ktos cos ?

: 22 lipca 2014, 11:51
autor: pawkrol

: 22 lipca 2014, 12:34
autor: Tschoob
a powiesz mi jaka komenda moge wykorzystac te backporty ? nigdzie nie moge tego znalezc....no i czy te pliki konfiguracyjne sa poprawne ?

: 22 lipca 2014, 13:11
autor: pawkrol
Dodaj wpis do pliku /etc/apt/sources.list

deb http://ftp.pl.debian.org/debian/ squeeze-backports main

a następnie wydaj polecenie

aptitude update
aptitude -t squeeze-backports install samba

: 22 lipca 2014, 13:29
autor: Tschoob
no i wyskakuje mi cos takiego :(

Kod: Zaznacz cały

root@Debian605:~# nano /etc/apt/sources.list
root@Debian605:~# aptitude -t squeeze-backports install samba


The following partially installed packages will be configured:
  samba
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 56 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
Setting up samba (2:3.5.6~dfsg-3squeeze11) ...
insserv: warning: script 'S97DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'S99selinux' missing LSB tags and overrides
insserv: warning: script 'DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'selinux' missing LSB tags and overrides
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv:  loop involving service stop-bootlogd at depth 10
insserv:  loop involving service DbSecuritySpt at depth 7
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Max recursions depth 99 reached
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: error processing samba (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
                                      Errors were encountered while processing:
 samba
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up samba (2:3.5.6~dfsg-3squeeze11) ...
insserv: warning: script 'S97DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'S99selinux' missing LSB tags and overrides
insserv: warning: script 'DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'selinux' missing LSB tags and overrides
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv:  loop involving service stop-bootlogd at depth 10
insserv:  loop involving service DbSecuritySpt at depth 7
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Max recursions depth 99 reached
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: error processing samba (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 samba





Current status: 56 updates [-6].
root@Debian605:~# smbd --version
Version 3.5.6



: 22 lipca 2014, 13:48
autor: pawkrol
Widzę, że masz coś nie tak z instalacją samby w wersji stable (3.5.6) a nie z backportow (3.6.6)
Poza tym zły adres Ci podałem taki ma być:


deb [url=http://<em>ftp.at.debian.org/debian-backports/</em>]http://ftp.at.debian.org/debian-backports/[/url] squeeze-backports main

Ja bym odinstalował cała sambę i zainstalował od nowa z backportów

: 22 lipca 2014, 16:17
autor: Tschoob
po zastosowaniu

Kod: Zaznacz cały

 apt-get remove samba




jest cos takiego :

Kod: Zaznacz cały

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libtdb1 tdb-tools
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  samba
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
12 not fully installed or removed.
After this operation, 23.5 MB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 38780 files and directories currently installed.)
Removing samba ...
Stopping Samba daemons: nmbd smbd.
Processing triggers for man-db ...
Setting up exim4-base (4.72-6+squeeze4) ...
insserv: warning: script 'S97DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'S99selinux' missing LSB tags and overrides
insserv: warning: script 'DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'selinux' missing LSB tags and overrides
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv:  loop involving service stop-bootlogd at depth 10
insserv:  loop involving service DbSecuritySpt at depth 7
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Max recursions depth 99 reached
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: error processing exim4-base (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of exim4-daemon-light:
 exim4-daemon-light depends on exim4-base (>= 4.72); however:
  Package exim4-base is not configured yet.
dpkg: error processing exim4-daemon-light (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of exim4:
 exim4 depends on exim4-base (>= 4.72); however:
  Package exim4-base is not configured yet.
 exim4 depends on exim4-daemon-light | exim4-daemon-heavy | exim4-daemon-custom; however:
  Package exim4-daemon-light is not configured yet.
  Package exim4-daemon-heavy is not installed.
  Package exim4-daemon-custom is not installed.
dpkg: error processing exim4 (--configure):
 dependency problems - leaving unconfigured
Setting up apache2.2-common (2.2.16-6+squeeze12) ...
configured to not write apport reports
                                      configured to not write apport reports
                                                                            configured to not write apport reports
                                                                                                                  insserv: warning: script 'S97DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'S99selinux' missing LSB tags and overrides
insserv: warning: script 'DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'selinux' missing LSB tags and overrides
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv:  loop involving service stop-bootlogd at depth 10
insserv:  loop involving service DbSecuritySpt at depth 7
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Max recursions depth 99 reached
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facconfigured to not write apport reports
                                                                                                                    configured to not write apport reports
                                                                                                                                                          configured to not write apport reports
                        ility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: error processing apache2.2-common (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of apache2-mpm-prefork:
 apache2-mpm-prefork depends on apache2.2-common (= 2.2.16-6+squeeze12); however:
  Package apache2.2-common is not configured yet.
dpkg: error processing apache2-mpm-prefork (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of apache2:
 apache2 depends on apache2-mpm-worker (= 2.2.16-6+squeeze12) | apache2-mpm-prefork (= 2.2.16-6+squeeze12) | apache2-mpm-event (= 2.2.16-6+squeeze12) | apache2-mpm-itk (= 2.2.16-6+squeeze12); however:
  Package apache2-mpm-worker is not installed.
  Package apache2-mpm-prefork is not configured yet.
  Package apache2-mpm-event is not installed.
  Package apache2-mpm-itk is not installed.
 apache2 depends on apache2.2-common (= 2.2.16-6+squeeze12); however:
  Package apache2.2-common is not configured yet.
dpkg: error processing apache2 (--configure):
 dependency problems - leaving unconfigured
Setting up cups (1.4.4-7+squeeze5) ...
insserv: warning: script 'S97DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'S99selinux' missing LSB tags and overrides
insserv: warning: script 'DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'selinux' missing LSB tags and overrides
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv:  loop involving service stop-bootlogd at depth 10
insserv:  loop involving service DbSecuritySpt at depth 7
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Max recursions depth 99 reached
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: error processing cups (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of hplip-cups:
 hplip-cups depends on cups; however:
  Package cups is not configured yet.
dpkg: error processing hplip-cups (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of hplip:
 hplip depends on hplip-cups (= 3.10.6-2+squeeze2); however:
  Package hplip-cups is not configured yet.
 hplip depends on cups (>= 1.1.20); however:
  Package cups is not configured yet.
dpkg: error processing hplip (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libapache2-mod-php5:
 libapache2-mod-php5 depends on apache2-mpm-prefork (>> 2.0.52) | apache2-mpm-itk; however:
  Package apache2-mpm-prefork is not configured yet.
  Package apache2-mpm-itk is not installed.
 libapache2-mod-php5 depends on apache2.2-common; however:
configured to not write apport reports
                                      configured to not write apport reports
                                                                            configured to not write apport reports
                                                                                                                  configured to not write apport reports
                                                                                                                                                          Package apache2.2-common is not configured yet.
dpkg: error processing libapache2-mod-php5 (--configure):
 dependency problems - leaving unconfigured
Setting up openssh-server (1:5.5p1-6+squeeze5) ...
insserv: warning: script 'S97DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'S99selinux' missing LSB tags and overrides
insserv: warning: script 'DbSecuritySpt' missing LSB tags and overrides
insserv: warning: script 'selinux' missing LSB tags and overrides
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv:  loop involving service stop-bootlogd at depth 10
insserv:  loop involving service DbSecuritySpt at depth 7
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: There is a loop between service DbSecuritySpt and stop-bootlogd if started
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Max recursions depth 99 reached
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting DbSecuritySpt depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: Starting selinux depends on stop-bootlogd and therefore on system facility `$all' which can not be true!
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: error processing openssh-server (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
                                      Errors were encountered while processing:
 exim4-base
 exim4-daemon-light
 exim4
 apache2.2-common
 apache2-mpm-prefork
 apache2
 cups
 hplip-cups
 hplip
 libapache2-mod-php5
 openssh-server
E: Sub-process /usr/bin/dpkg returned an error code (1)



potem gdy instaluje nowa sambe z tego repo co mi napisales ( czyli dodaje deb [url=http://%3Cem%3Eftp.at.debian.org/debian-backports/%3C/em%3E]http://ftp.at.debian.org/debian-backports/[/url] squeeze-backports main do sources.list ) i instaluje komenda

Kod: Zaznacz cały

[/color][color=#333333]aptitude update[/color]
[color=#333333]aptitude -t squeeze-backports install samba[/color]

to wywala znowu cala liste tak jak wyzej....

: 22 lipca 2014, 22:25
autor: Menel
insserv pociśnij z backportów, pluje się o nagłówki skryptów jak nie pomoże to wykop insserv albo poedytuj sobie skrypty

: 25 lipca 2014, 09:07
autor: Tschoob
po zaktualizowaniu debiana do 7.6 i samby do 3.6.6 wszystko na tych konfigach ruszylo :)

Dzieki za pomoc :)