diff -Nru zentyal-radius-3.1.1/ChangeLog zentyal-radius-3.1.2/ChangeLog --- zentyal-radius-3.1.1/ChangeLog 2013-08-05 10:23:59.000000000 +0000 +++ zentyal-radius-3.1.2/ChangeLog 2013-09-17 09:17:46.000000000 +0000 @@ -1,3 +1,5 @@ +3.1.2 + + Override daemons when migrating from 3.0 3.1.1 + Remove FirewallObserver inheritance as it is not used + Added menu icon diff -Nru zentyal-radius-3.1.1/debian/changelog zentyal-radius-3.1.2/debian/changelog --- zentyal-radius-3.1.1/debian/changelog 2013-08-05 10:24:00.000000000 +0000 +++ zentyal-radius-3.1.2/debian/changelog 2013-09-17 09:17:46.000000000 +0000 @@ -1,3 +1,9 @@ +zentyal-radius (3.1.2) precise; urgency=low + + * New upstream release + + -- José A. Calvo Tue, 17 Sep 2013 11:17:46 +0200 + zentyal-radius (3.1.1) precise; urgency=low * New upstream release diff -Nru zentyal-radius-3.1.1/src/EBox/Radius.pm zentyal-radius-3.1.2/src/EBox/Radius.pm --- zentyal-radius-3.1.1/src/EBox/Radius.pm 2013-08-05 10:23:59.000000000 +0000 +++ zentyal-radius-3.1.2/src/EBox/Radius.pm 2013-09-17 09:17:46.000000000 +0000 @@ -149,6 +149,11 @@ $firewall->saveConfigRecursive(); } + + # Upgrade from 3.0 + if (defined ($version) and (EBox::Util::Version::compare($version, '3.1') < 0)) { + $self->_overrideDaemons() if $self->configured(); + } } sub _services