Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2016-04-14 13:00:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2016-03-01 
11:57:39.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2016-04-14 
13:00:15.000000000 +0200
@@ -1,0 +2,12 @@
+Fri Apr  8 13:57:08 UTC 2016 - [email protected]
+
+- chckconfig: add --no-systemctl option
+
+-------------------------------------------------------------------
+Thu Apr  7 15:03:51 UTC 2016 - [email protected]
+
+- chkconfig: return 1 trying to list unknown service (bnc#971567)
+- Merge pull request #26 from andreas-schwab/master
+- Remove spurious assignment to unknown variable term from /etc/inputrc
+
+-------------------------------------------------------------------

Old:
----
  aaa_base-13.2+git20160225.36aeb39.tar.xz

New:
----
  aaa_base-13.2+git20160408.3d9d3a8.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.PR2brA/_old  2016-04-14 13:00:16.000000000 +0200
+++ /var/tmp/diff_new_pack.PR2brA/_new  2016-04-14 13:00:16.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           aaa_base
-Version:        13.2+git20160225.36aeb39
+Version:        13.2+git20160408.3d9d3a8
 Release:        0
 Url:            https://github.com/openSUSE/aaa_base
 Provides:       aaa_skel = %{version}-%{release}

++++++ aaa_base-13.2+git20160225.36aeb39.tar.xz -> 
aaa_base-13.2+git20160408.3d9d3a8.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20160225.36aeb39/files/etc/inputrc 
new/aaa_base-13.2+git20160408.3d9d3a8/files/etc/inputrc
--- old/aaa_base-13.2+git20160225.36aeb39/files/etc/inputrc     2016-02-25 
13:37:27.000000000 +0100
+++ new/aaa_base-13.2+git20160408.3d9d3a8/files/etc/inputrc     2016-04-08 
15:56:00.000000000 +0200
@@ -16,7 +16,6 @@
 set output-meta on
 set convert-meta off
 set enable-meta-key off
-set term xy
 #
 # VI line editing
 #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20160225.36aeb39/files/usr/bin/chkconfig 
new/aaa_base-13.2+git20160408.3d9d3a8/files/usr/bin/chkconfig
--- old/aaa_base-13.2+git20160225.36aeb39/files/usr/bin/chkconfig       
2016-02-25 13:37:27.000000000 +0100
+++ new/aaa_base-13.2+git20160408.3d9d3a8/files/usr/bin/chkconfig       
2016-04-08 15:56:00.000000000 +0200
@@ -152,6 +152,7 @@
 
 my $force;
 my $allservices;
+my $nosystemctl = 0;
 
 #
 # run insserv
@@ -477,8 +478,11 @@
 sub is_overriden_by_systemd {
     my $service = shift;
     my $root = shift;
-    for my $path (@systemd_paths) {
-       return $path if -e "$root/$path/$service.service";
+
+    if (!$nosystemctl) {
+        for my $path (@systemd_paths) {
+           return $path if -e "$root/$path/$service.service";
+        }
     }
     return undef;
 }
@@ -562,8 +566,8 @@
                 'force|f'  => \$force,
                 'allservices|A'  => \$allservices,
                 'deps'     => \$printdeps,
-                'root=s'   => \$root
-
+                'root=s'   => \$root,
+                'no_systemctl' => \$nosystemctl,
    )) {
   usage();
   exit 1;
@@ -796,6 +800,7 @@
   $mode = 'l';
   initlinks_rc();
 }
+
 if ($mode eq 'l' || $mode eq 'L') {
   my $usecolor = -t STDOUT;
   if (is_systemd_active() && @services) {
@@ -814,6 +819,7 @@
   for $s (@services) {
     if (!$known_rc{$s}) {
       print STDERR "$s: unknown service\n" unless $known_all{$s};
+      $status = 1;
       next;
     }
     my $line = "";


Reply via email to