Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[SOLVED]Debian wheezy errors after upgrades

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
vicky52
Posts: 11
Joined: 2013-12-18 22:52

[SOLVED]Debian wheezy errors after upgrades

#1 Post by vicky52 »

I have upgraded the packages on wheezy and I see lots of errors

Code: Select all

aptitude update
aptitude upgrade
I see

Code: Select all

Errors were encountered while processing:
 mysql-server-5.5
 ntp
 rsyslog
 apache2.2-common
 apache2-mpm-prefork
 apache2
 bind9
 corosync
 dbus
 dbus-x11
 libapache2-mod-perl2
 libapache2-mod-perl2-dev
 libapache2-mod-php5
 libapache2-reload-perl
 memcached
 mysql-server
 openssh-server
 pacemaker
 php5
 screen
 snmpd
 sudo
 unattended-upgrades
 mt-st
 rpcbind
 rsyslog-gssapi
 ssh
I tried doing

Code: Select all

apt-get install -f
dpkg --configure -a
Still I am not able to install the dependencies. Any help in resolving this is appreciated. Thanks in advance.
Last edited by vicky52 on 2015-11-12 21:07, edited 1 time in total.

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Debian wheezy errors after upgrades

#2 Post by GarryRicketson »

The best thing to do I think, don't try to do any more until you can post the content of your sources.list file:

Code: Select all

/etc/apt/sources.list
If you need details on how to copy and paste it to the board here, please ask, other wise no need to go into that.
I am using wheezy, as well.
I hope it is not to late, the thing of it is, if any of the sources pointed to a "stable" version, then you are trying to install, update using sources for debian 8 "jessie", because it is the current stable version, and that would break a "wheezy" installation.

vicky52
Posts: 11
Joined: 2013-12-18 22:52

Re: Debian wheezy errors after upgrades

#3 Post by vicky52 »

Code: Select all

deb http://http.debian.net/debian wheezy main
# deb-src http://http.debian.net/debian wheezy main

deb http://http.debian.net/debian wheezy-updates main
# deb-src http://http.debian.net/debian wheezy-updates main

deb http://security.debian.org/ wheezy/updates main
# deb-src http://security.debian.org/ wheezy/updates main

deb http://packages.dotdeb.org wheezy all
deb-src http://packages.dotdeb.org wheezy all

deb http://packages.dotdeb.org wheezy-php56-zts all
deb-src http://packages.dotdeb.org wheezy-php56-zts all

User avatar
thanatos_incarnate
Posts: 717
Joined: 2012-11-04 20:36

Re: Debian wheezy errors after upgrades

#4 Post by thanatos_incarnate »

vicky52 wrote:http://packages.dotdeb.org wheezy-php56-zts all
That might be the culprit.

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Debian wheezy errors after upgrades

#5 Post by GarryRicketson »

Ok thanks, I am no expert on this, also am not familiar with these:

Code: Select all

deb http://packages.dotdeb.org wheezy all
deb-src http://packages.dotdeb.org wheezy all
deb http://packages.dotdeb.org wheezy-php56-zts all
deb-src http://packages.dotdeb.org wheezy-php56-zts all  
This "dotdeb.org", what it is for, ?
I see you have been using Debian for some time, probably you have all ready read this:
https://wiki.debian.org/DontBreakDebian
But any way, in case you have not, please do, it will save a lot of trying to explain things you may all ready know, or don't know, depending.


Not sure, it may or may not be causing the problems, I try to keep mine restricted to only debian repos.


Mine :

Code: Select all

 # Debian 7.0 "Wheezy"
# deb http://http.debian.net/debian/ wheezy main contrib non-free
deb http://http.us.debian.org/debian/ wheezy main
deb http://http.debian.net/debian/ wheezy main
deb-src http://http.debian.net/debian wheezy main
deb http://http.debian.net/debian wheezy-updates main
deb-src http://http.debian.net/debian wheezy-updates main
deb http://security.debian.org/ wheezy/updates main
deb-src http://security.debian.org/ wheezy/updates main
deb http://http.debian.net/debian wheezy-backports main
 
The "deb-src" ones are not needed that much, but I do like to get the source-code, so I have them.
Do you use any from /etc/apt/sources.list.d / ?
That is where I have the source file for "ajenti", it is the only software I use that is not in the debian repos,
I am not sure what more to say, I think, now, there is enough info that some one more "expert" can give you some ideas or tips as to what to do ,to resolve this
Any help in resolving this is appreciated.

At what point did you start getting the errors,?
Did the "update " go ok ?

Code: Select all

aptitude update
but when you started doing

Code: Select all

aptitude upgrade
is that when you started getting the errors ? I ask this because, if "update" did not completely update correctly, the "upgrade" would also fail, (I think)
Just kind of guessing, but I am thinking some of the dependencies needed are not
correct or available in the "dotdeb.org" sources, so far I have not ever had any problems with any of the debian.org and debian.net sources,..but I have not installed or upgraded anything since early October, I have not done anything recently. But the same could happen to me, of for example when I did a update/upgrade, and if "ajenti" was not up to date, and their sources, I might get or have a problem, so far they have been very good, I don't know about this "dotdeb.org".

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Debian wheezy errors after upgrades

#6 Post by GarryRicketson »

thanatos_incarnate wrote:
vicky52 wrote:http://packages.dotdeb.org wheezy-php56-zts all
That might be the culprit.
Posted while I was writing, but +1, that is pretty much what I think, but for the
OP, "might" is not the same as " is" or "definite" ,
Once we know, why you need that as a source, what programs it is for, some one may be able to point you to a better source, or have some more idea , as to what to do.

vicky52
Posts: 11
Joined: 2013-12-18 22:52

Re: Debian wheezy errors after upgrades

#7 Post by vicky52 »

Thanks for your suggestion. dotdeb.org is used to install php-5.6. And I added doteb.org after the upgrade. The

Code: Select all

aptitude update
went well and all the packages were updated before the upgrade.

User avatar
dilberts_left_nut
Administrator
Administrator
Posts: 5346
Joined: 2009-10-05 07:54
Location: enzed
Has thanked: 13 times
Been thanked: 66 times

Re: Debian wheezy errors after upgrades

#8 Post by dilberts_left_nut »

The actual problem will be described by the actual output that you didn't post.
AdrianTM wrote:There's no hacker in my grandma...

vicky52
Posts: 11
Joined: 2013-12-18 22:52

Re: Debian wheezy errors after upgrades

#9 Post by vicky52 »

the output is very long

Code: Select all

 apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 14 not upgraded.
25 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up mysql-server-5.5 (5.5.46-0+deb7u1) ...
[ ok ] Stopping MySQL database server: mysqld.
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 mysql-server-5.5 (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up ntp (1:4.2.6.p5+dfsg-2+deb7u6) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 ntp (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up rsyslog (5.8.11-3+deb7u2) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 rsyslog (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up apache2.2-common (2.2.22-13+deb7u6) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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.22-13+deb7u6); 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.22-13+deb7u6) | apache2-mpm-prefork (= 2.2.22-13+deb7u6) | apache2-mpm-event (= 2.2.22-13+deb7u6) | apache2-mpm-itk (= 2.2.22-13+deb7u6); how
  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.22-13+deb7u6); however:
  Package apache2.2-common is not configured yet.

dpkg: error processing apache2 (--configure):
 dependency problems - leaving unconfigured
Setting up bind9 (1:9.8.4.dfsg.P1-6+nmu2+deb7u7) ...
[....] Stopping domain name service...: bind9waiting for pid 29811 to die
. ok
[ ok ] Starting domain name service...: bind9.
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 bind9 (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up corosync (1.4.2-3) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: current start runlevel(s) (3 5) of script `corosync' overrides LSB defaults (empty).
insserv: warning: current stop runlevel(s) (0 6) of script `corosync' overrides LSB defaults (empty).
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 corosync (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up dbus (1.6.8-1+deb7u6) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 dbus (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of dbus-x11:
 dbus-x11 depends on dbus; however:
  Package dbus is not configured yet.

dpkg: error processing dbus-x11 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libapache2-mod-perl2:
 libapache2-mod-perl2 depends on apache2 | apache2-mpm-itk; however:
  Package apache2 is not configured yet.
  Package apache2-mpm-prefork which provides apache2 is not configured yet.
  Package apache2-mpm-itk is not installed.
 libapache2-mod-perl2 depends on apache2.2-common; however:
  Package apache2.2-common is not configured yet.

dpkg: error processing libapache2-mod-perl2 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libapache2-mod-perl2-dev:
 libapache2-mod-perl2-dev depends on libapache2-mod-perl2 (>= 2.0.7-3); however:
  Package libapache2-mod-perl2 is not configured yet.
 libapache2-mod-perl2-dev depends on libapache2-mod-perl2 (<< 2.0.7-3.1~); however:
  Package libapache2-mod-perl2 is not configured yet.

dpkg: error processing libapache2-mod-perl2-dev (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libapache2-mod-php5:
 libapache2-mod-php5 depends on apache2-mpm-prefork | apache2-mpm-itk; however:
  Package apache2-mpm-prefork is not configured yet.
  Package apache2-mpm-itk is not installed.

dpkg: error processing libapache2-mod-php5 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libapache2-reload-perl:
 libapache2-reload-perl depends on libapache2-mod-perl2; however:
  Package libapache2-mod-perl2 is not configured yet.

dpkg: error processing libapache2-reload-perl (--configure):
 dependency problems - leaving unconfigured
Setting up memcached (1.4.13-0.2+deb7u1) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 memcached (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.5; however:
  Package mysql-server-5.5 is not configured yet.

dpkg: error processing mysql-server (--configure):
 dependency problems - leaving unconfigured
Setting up openssh-server (1:6.0p1-4+deb7u2) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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
dpkg: dependency problems prevent configuration of pacemaker:
 pacemaker depends on corosync (>= 1.4.1) | heartbeat (>= 3.0); however:
  Package corosync is not configured yet.
  Package heartbeat is not installed.

dpkg: error processing pacemaker (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of php5:
 php5 depends on libapache2-mod-php5 (>= 5.6.15-1~dotdeb+zts+7.1~) | libapache2-mod-php5filter (>= 5.6.15-1~dotdeb+zts+7.1~) | php5-cgi (>= 5.6.15-1~dotdeb+zts+7.1~) | php5-fpm (>= 5.6.15
  Package libapache2-mod-php5 is not configured yet.
  Package libapache2-mod-php5filter is not installed.
  Package php5-cgi is not installed.
  Package php5-fpm is not installed.

dpkg: error processing php5 (--configure):
 dependency problems - leaving unconfigured
Setting up snmpd (5.4.3~dfsg-2.8+deb7u1) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 snmpd (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up sudo (1.8.5p2-1+nmu3) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 sudo (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up unattended-upgrades (0.79.5+wheezy2) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 unattended-upgrades (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up mt-st (1.1-4) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 mt-st (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up rpcbind (0.2.0-8+deb7u1) ...
insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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 rpcbind (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of rsyslog-gssapi:
 rsyslog-gssapi depends on rsyslog (= 5.8.11-3+deb7u2); however:
  Package rsyslog is not configured yet.

dpkg: error processing rsyslog-gssapi (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 mysql-server-5.5
 ntp
 rsyslog
 apache2.2-common
 apache2-mpm-prefork
 apache2
 bind9
 corosync
 dbus
 dbus-x11
 libapache2-mod-perl2
 libapache2-mod-perl2-dev
 libapache2-mod-php5
 libapache2-reload-perl
 memcached
 mysql-server
 openssh-server
 pacemaker
 php5
 snmpd
 sudo
 unattended-upgrades
 mt-st
 rpcbind
 rsyslog-gssapi
E: Sub-process /usr/bin/dpkg returned an error code (1)

User avatar
dilberts_left_nut
Administrator
Administrator
Posts: 5346
Joined: 2009-10-05 07:54
Location: enzed
Has thanked: 13 times
Been thanked: 66 times

Re: Debian wheezy errors after upgrades

#10 Post by dilberts_left_nut »

Code: Select all

insserv: warning: script 'K02jira' missing LSB tags and overrides
insserv: warning: script 'jira' missing LSB tags and overrides
insserv: warning: script 'stash' missing LSB tags and overrides
insserv: There is a loop between service monit and stash if stopped
insserv:  loop involving service stash at depth 2
insserv:  loop involving service monit at depth 1
insserv: Stopping stash depends on monit 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
You need to remove or fix those broken, foreign init scripts.
AdrianTM wrote:There's no hacker in my grandma...

vicky52
Posts: 11
Joined: 2013-12-18 22:52

Re: Debian wheezy errors after upgrades

#11 Post by vicky52 »

That was easy. Thank you for pointing out and it solved the problem. Thanks again :)

User avatar
thanatos_incarnate
Posts: 717
Joined: 2012-11-04 20:36

Re: Debian wheezy errors after upgrades

#12 Post by thanatos_incarnate »

I cannot stress that enough, and we should probably have that somewhere as a sticky or something:
If you have added a lot of Backports or external repo packages, don't expect the upgrade to a new
release to go smoothly. Only a clean Debian Oldstable will have a high likelihood of properly upgrading
to the next Debian Stable release.
If you have a lot of external packages, rather do a clean install.
If you have a few, then remove them and reinstall them after the upgrade.

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: Debian wheezy errors after upgrades

#13 Post by GarryRicketson »

Both PHP and Mysql packages are available in the Debian repos as well,
No need to use "out side sources" for that.

https://wiki.debian.org/PHP/

http://php.net/manual/en/install.unix.debian.php
While the instructions for building PHP on Unix apply to Debian as well, this manual page contains specific information for other options, such as using either the apt-get or aptitude commands.
Any way if the problem is solved, please edit the first post , the "subject" line:
IE:
Debian wheezy errors after upgrades (solved)
The OP is the only one that can do that.
It was not clear in the original post, but are you just trying to keep your current Debian Wheezy and packages up to date ? or are you trying to upgrade it to Debian 8 Jessie ?
"thanatos_incarnate " Has a very good point, if you are trying to upgrade all the way to the current stable (Jessie 8),
I wanted to keep my original Wheezy, but also wanted to try the new release, Jessie (not so new anymore), so I put it (Jessie) on a separate partition, and kept Wheezy as it is, on the main partition, but any way, glad you found a solution.

vicky52
Posts: 11
Joined: 2013-12-18 22:52

Debian wheezy errors after upgrades

#14 Post by vicky52 »

I was not trying to upgrade to Jessie. Wanted to keep my packages up to date. And PHP 5.6 AFIK it is not available on wheezy, so added sources from outside. Sorry for not being clear and thanks for the inputs.

Post Reply