Hello community,

here is the log from the commit of package yast2-nfs-server for 
openSUSE:Factory checked in at 2013-06-05 13:26:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-nfs-server (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-nfs-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-nfs-server"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-nfs-server/yast2-nfs-server.changes        
2013-01-08 16:46:48.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-nfs-server.new/yast2-nfs-server.changes   
2013-06-05 13:26:24.000000000 +0200
@@ -1,0 +2,7 @@
+Thu May 16 15:21:24 CEST 2013 - loci...@suse.com
+
+- Adapted testsuites testing if service is enabled, implementation
+  has been changed in yast2 package (bnc#807507).
+- 2.21.7
+
+-------------------------------------------------------------------

Old:
----
  yast2-nfs-server-2.21.6.tar.bz2

New:
----
  yast2-nfs-server-2.21.7.tar.bz2

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

Other differences:
------------------
++++++ yast2-nfs-server.spec ++++++
--- /var/tmp/diff_new_pack.Da75hh/_old  2013-06-05 13:26:25.000000000 +0200
+++ /var/tmp/diff_new_pack.Da75hh/_new  2013-06-05 13:26:25.000000000 +0200
@@ -17,16 +17,16 @@
 
 
 Name:           yast2-nfs-server
-Version:        2.21.6
+Version:        2.21.7
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source0:        yast2-nfs-server-%{version}.tar.bz2
 
-# SuSEfirewall2_* services merged into one yast2-2.23.17
+# Changed implementation for checking if service is enabled 2.23.23 (affects 
testsuite)
 BuildRequires:  perl-XML-Writer
 BuildRequires:  update-desktop-files
-BuildRequires:  yast2 >= 2.23.17
+BuildRequires:  yast2 >= 2.23.23
 BuildRequires:  yast2-devtools
 BuildRequires:  yast2-testsuite
 # Service::Find

++++++ yast2-nfs-server-2.21.6.tar.bz2 -> yast2-nfs-server-2.21.7.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/Makefile.am 
new/yast2-nfs-server-2.21.7/Makefile.am
--- old/yast2-nfs-server-2.21.6/Makefile.am     2013-01-07 10:23:07.000000000 
+0100
+++ new/yast2-nfs-server-2.21.7/Makefile.am     2013-05-28 14:14:37.000000000 
+0200
@@ -158,19 +158,14 @@
 
 TAGVERSION      = $(Y2TOOL) tagversion
 
-check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
-       if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\
-       else \
-         cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep 
-v '^Status against revision' ;\
+# check if there is no modified files and all commits were pushed
+check-up-to-date:
+       if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` 
-gt 0 ]; then \
+         (echo "ERROR: Source is not commited and pushed. See `git status`"; 
false) \
        fi
 
 check-tagversion:
-       @if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
-       else \
-         cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \
-       fi >/dev/null; \
+       cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \
        [ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false )
 
 check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/Makefile.am.common 
new/yast2-nfs-server-2.21.7/Makefile.am.common
--- old/yast2-nfs-server-2.21.6/Makefile.am.common      2013-01-07 
10:23:07.000000000 +0100
+++ new/yast2-nfs-server-2.21.7/Makefile.am.common      2013-05-28 
14:14:37.000000000 +0200
@@ -31,7 +31,7 @@
 
 CHECK_SYNTAX = true
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/Makefile.in 
new/yast2-nfs-server-2.21.7/Makefile.in
--- old/yast2-nfs-server-2.21.6/Makefile.in     2013-01-07 10:23:10.000000000 
+0100
+++ new/yast2-nfs-server-2.21.7/Makefile.in     2013-05-28 14:14:43.000000000 
+0200
@@ -982,19 +982,14 @@
 
 package: check-up-to-date check-tagversion check-textdomain package-local
 
-check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
-       if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\
-       else \
-         cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep 
-v '^Status against revision' ;\
+# check if there is no modified files and all commits were pushed
+check-up-to-date:
+       if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` 
-gt 0 ]; then \
+         (echo "ERROR: Source is not commited and pushed. See `git status`"; 
false) \
        fi
 
 check-tagversion:
-       @if [ -d $(srcdir)/CVS ]; then \
-         cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
-       else \
-         cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \
-       fi >/dev/null; \
+       cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \
        [ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false )
 
 check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/VERSION 
new/yast2-nfs-server-2.21.7/VERSION
--- old/yast2-nfs-server-2.21.6/VERSION 2013-01-07 10:10:48.000000000 +0100
+++ new/yast2-nfs-server-2.21.7/VERSION 2013-05-16 16:30:41.000000000 +0200
@@ -1 +1 @@
-2.21.6
+2.21.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/configure 
new/yast2-nfs-server-2.21.7/configure
--- old/yast2-nfs-server-2.21.6/configure       2013-01-07 10:23:09.000000000 
+0100
+++ new/yast2-nfs-server-2.21.7/configure       2013-05-28 14:14:42.000000000 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-nfs-server 2.21.6.
+# Generated by GNU Autoconf 2.69 for yast2-nfs-server 2.21.7.
 #
 # Report bugs to <http://bugs.opensuse.org/>.
 #
@@ -579,8 +579,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-nfs-server'
 PACKAGE_TARNAME='yast2-nfs-server'
-PACKAGE_VERSION='2.21.6'
-PACKAGE_STRING='yast2-nfs-server 2.21.6'
+PACKAGE_VERSION='2.21.7'
+PACKAGE_STRING='yast2-nfs-server 2.21.7'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1249,7 +1249,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures yast2-nfs-server 2.21.6 to adapt to many kinds of 
systems.
+\`configure' configures yast2-nfs-server 2.21.7 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1321,7 +1321,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of yast2-nfs-server 2.21.6:";;
+     short | recursive ) echo "Configuration of yast2-nfs-server 2.21.7:";;
    esac
   cat <<\_ACEOF
 
@@ -1401,7 +1401,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-yast2-nfs-server configure 2.21.6
+yast2-nfs-server configure 2.21.7
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1418,7 +1418,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-nfs-server $as_me 2.21.6, which was
+It was created by yast2-nfs-server $as_me 2.21.7, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2357,7 +2357,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-nfs-server'
- VERSION='2.21.6'
+ VERSION='2.21.7'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -2480,7 +2480,7 @@
 
 
 
-VERSION="2.21.6"
+VERSION="2.21.7"
 RPMNAME="yast2-nfs-server"
 MAINTAINER="Martin Vidner <mvid...@suse.cz>"
 
@@ -3495,7 +3495,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by yast2-nfs-server $as_me 2.21.6, which was
+This file was extended by yast2-nfs-server $as_me 2.21.7, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3548,7 +3548,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-yast2-nfs-server config.status 2.21.6
+yast2-nfs-server config.status 2.21.7
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/configure.in 
new/yast2-nfs-server-2.21.7/configure.in
--- old/yast2-nfs-server-2.21.6/configure.in    2013-01-07 10:23:07.000000000 
+0100
+++ new/yast2-nfs-server-2.21.7/configure.in    2013-05-28 14:14:37.000000000 
+0200
@@ -1,9 +1,9 @@
 dnl configure.in for yast2-nfs-server
 dnl
-dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.24.0 - DO NOT EDIT! --
 dnl    (edit configure.in.in instead)
 
-AC_INIT(yast2-nfs-server, 2.21.6, http://bugs.opensuse.org/, yast2-nfs-server)
+AC_INIT(yast2-nfs-server, 2.21.7, http://bugs.opensuse.org/, yast2-nfs-server)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,7 +18,7 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 variables
-VERSION="2.21.6"
+VERSION="2.21.7"
 RPMNAME="yast2-nfs-server"
 MAINTAINER="Martin Vidner <mvid...@suse.cz>"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-nfs-server-2.21.6/src/Makefile.in 
new/yast2-nfs-server-2.21.7/src/Makefile.in
--- old/yast2-nfs-server-2.21.6/src/Makefile.in 2013-01-07 10:23:10.000000000 
+0100
+++ new/yast2-nfs-server-2.21.7/src/Makefile.in 2013-05-28 14:14:43.000000000 
+0200
@@ -602,7 +602,7 @@
 
 dist-hook: check-syntax
 check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles)
-       @if test "$(client_DATA)"; then \
+       @if test "$(filter %.ycp,client_DATA)"; then \
          if $(CHECK_SYNTAX); then \
            TO_CHECK="$(filter %.ycp,$^)"; \
            echo "Checking syntax of $${TO_CHECK}"; \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-nfs-server-2.21.6/testsuite/tests/readwrite-unfsd.out 
new/yast2-nfs-server-2.21.7/testsuite/tests/readwrite-unfsd.out
--- old/yast2-nfs-server-2.21.6/testsuite/tests/readwrite-unfsd.out     
2013-01-07 10:07:25.000000000 +0100
+++ new/yast2-nfs-server-2.21.7/testsuite/tests/readwrite-unfsd.out     
2013-05-16 16:30:41.000000000 +0200
@@ -17,13 +17,9 @@
 Write  .sysconfig.nfs.NFS4_SUPPORT "no" true
 Write  .sysconfig.nfs.NFS_SECURITY_GSS "no" true
 Write  .sysconfig.nfs nil true
-Read   .init.scripts.runlevel "rpcbind" $["network":$["start":["3", "5"], 
"stop":["3", "5"]], "networkmanager":$["start":[], "stop":[]], 
"nfsserver":$["start":["3", "5"], "stop":["3", "5"]], "rpcbind":$["start":["3", 
"5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "rpcbind" $["nfsserver":$[], "rpcbind":$[]]
-Read   .init.scripts.runlevel "nfslock" $["network":$["start":["3", "5"], 
"stop":["3", "5"]], "networkmanager":$["start":[], "stop":[]], 
"nfsserver":$["start":["3", "5"], "stop":["3", "5"]], "rpcbind":$["start":["3", 
"5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfslock" $["nfsserver":$[], "rpcbind":$[]]
-Execute        .target.bash_output "/bin/systemctl enable nfslock.service" 
$["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfsserver" $["network":$["start":["3", "5"], 
"stop":["3", "5"]], "networkmanager":$["start":[], "stop":[]], 
"nfsserver":$["start":["3", "5"], "stop":["3", "5"]], "rpcbind":$["start":["3", 
"5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfsserver" $["nfsserver":$[], "rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled rpcbind.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfslock.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfsserver.service" 0
 Execute        .target.bash "/bin/systemctl status idmapd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash "/bin/systemctl status svcgssd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash_output "/bin/systemctl stop svcgssd.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-nfs-server-2.21.6/testsuite/tests/readwrite.out 
new/yast2-nfs-server-2.21.7/testsuite/tests/readwrite.out
--- old/yast2-nfs-server-2.21.6/testsuite/tests/readwrite.out   2013-01-07 
10:07:26.000000000 +0100
+++ new/yast2-nfs-server-2.21.7/testsuite/tests/readwrite.out   2013-05-16 
16:30:41.000000000 +0200
@@ -17,12 +17,9 @@
 Write  .sysconfig.nfs.NFS4_SUPPORT "no" true
 Write  .sysconfig.nfs.NFS_SECURITY_GSS "no" true
 Write  .sysconfig.nfs nil true
-Read   .init.scripts.runlevel "rpcbind" $["nfslock":$["start":["3", "5"], 
"stop":["3", "5"]], "nfsserver":$["start":["3", "5"], "stop":["3", "5"]], 
"rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "rpcbind" $["nfslock":$[], "nfsserver":$[], 
"rpcbind":$[]]
-Read   .init.scripts.runlevel "nfslock" $["nfslock":$["start":["3", "5"], 
"stop":["3", "5"]], "nfsserver":$["start":["3", "5"], "stop":["3", "5"]], 
"rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfslock" $["nfslock":$[], "nfsserver":$[], 
"rpcbind":$[]]
-Read   .init.scripts.runlevel "nfsserver" $["nfslock":$["start":["3", "5"], 
"stop":["3", "5"]], "nfsserver":$["start":["3", "5"], "stop":["3", "5"]], 
"rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfsserver" $["nfslock":$[], "nfsserver":$[], 
"rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled rpcbind.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfslock.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfsserver.service" 0
 Execute        .target.bash "/bin/systemctl status idmapd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash "/bin/systemctl status svcgssd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash_output "/bin/systemctl stop svcgssd.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-nfs-server-2.21.6/testsuite/tests/readwrite2.out 
new/yast2-nfs-server-2.21.7/testsuite/tests/readwrite2.out
--- old/yast2-nfs-server-2.21.6/testsuite/tests/readwrite2.out  2013-01-07 
10:07:26.000000000 +0100
+++ new/yast2-nfs-server-2.21.7/testsuite/tests/readwrite2.out  2013-05-16 
16:30:41.000000000 +0200
@@ -22,12 +22,11 @@
 Write  .sysconfig.nfs.NFS_SECURITY_GSS "no" true
 Write  .sysconfig.nfs nil true
 Execute        .target.bash_output "/bin/systemctl stop nfsserver.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfsserver" $["nfsserver":$["start":["3", "5"], 
"stop":["3", "5"]], "rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfsserver" $["nfsserver":$[], "rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled nfsserver.service" 0
 Execute        .target.bash_output "/bin/systemctl  disable nfsserver.service" 
$["exit":0, "stderr":"", "stdout":""]
 Execute        .target.bash_output "/bin/systemctl stop nfslock.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfslock" $["nfsserver":$["start":["3", "5"], 
"stop":["3", "5"]], "rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfslock" $["nfsserver":$[], "rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled nfslock.service" 0
+Execute        .target.bash_output "/bin/systemctl  disable nfslock.service" 
$["exit":0, "stderr":"", "stdout":""]
 Return true
 Dump   
 Dump   Read  - services are running
@@ -51,13 +50,9 @@
 Write  .sysconfig.nfs.NFS4_SUPPORT "no" true
 Write  .sysconfig.nfs.NFS_SECURITY_GSS "no" true
 Write  .sysconfig.nfs nil true
-Read   .init.scripts.runlevel "rpcbind" $["nfsserver":$["start":["3", "5"], 
"stop":["3", "5"]], "rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "rpcbind" $["nfsserver":$[], "rpcbind":$[]]
-Read   .init.scripts.runlevel "nfslock" $["nfsserver":$["start":["3", "5"], 
"stop":["3", "5"]], "rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfslock" $["nfsserver":$[], "rpcbind":$[]]
-Execute        .target.bash_output "/bin/systemctl enable nfslock.service" 
$["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfsserver" $["nfsserver":$["start":["3", "5"], 
"stop":["3", "5"]], "rpcbind":$["start":["3", "5"], "stop":["3", "5"]]]
-Read   .init.scripts.comment "nfsserver" $["nfsserver":$[], "rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled rpcbind.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfslock.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfsserver.service" 0
 Execute        .target.bash "/bin/systemctl status idmapd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash "/bin/systemctl status svcgssd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash_output "/bin/systemctl stop svcgssd.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
@@ -90,11 +85,11 @@
 Write  .sysconfig.nfs.NFS_SECURITY_GSS "no" true
 Write  .sysconfig.nfs nil true
 Execute        .target.bash_output "/bin/systemctl stop nfsserver.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfsserver" $["nfsserver":$["start":[], 
"stop":[]], "rpcbind":$["start":[], "stop":[]]]
-Read   .init.scripts.comment "nfsserver" $["nfsserver":$[], "rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled nfsserver.service" 0
+Execute        .target.bash_output "/bin/systemctl  disable nfsserver.service" 
$["exit":0, "stderr":"", "stdout":""]
 Execute        .target.bash_output "/bin/systemctl stop nfslock.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfslock" $["nfsserver":$["start":[], 
"stop":[]], "rpcbind":$["start":[], "stop":[]]]
-Read   .init.scripts.comment "nfslock" $["nfsserver":$[], "rpcbind":$[]]
+Execute        .target.bash "/bin/systemctl is-enabled nfslock.service" 0
+Execute        .target.bash_output "/bin/systemctl  disable nfslock.service" 
$["exit":0, "stderr":"", "stdout":""]
 Return true
 Dump   
 Dump   Read  - services are stopped
@@ -118,15 +113,9 @@
 Write  .sysconfig.nfs.NFS4_SUPPORT "no" true
 Write  .sysconfig.nfs.NFS_SECURITY_GSS "no" true
 Write  .sysconfig.nfs nil true
-Read   .init.scripts.runlevel "rpcbind" $["nfsserver":$["start":[], 
"stop":[]], "rpcbind":$["start":[], "stop":[]]]
-Read   .init.scripts.comment "rpcbind" $["nfsserver":$[], "rpcbind":$[]]
-Execute        .target.bash_output "/bin/systemctl enable rpcbind.service" 
$["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfslock" $["nfsserver":$["start":[], 
"stop":[]], "rpcbind":$["start":[], "stop":[]]]
-Read   .init.scripts.comment "nfslock" $["nfsserver":$[], "rpcbind":$[]]
-Execute        .target.bash_output "/bin/systemctl enable nfslock.service" 
$["exit":0, "stderr":"", "stdout":""]
-Read   .init.scripts.runlevel "nfsserver" $["nfsserver":$["start":[], 
"stop":[]], "rpcbind":$["start":[], "stop":[]]]
-Read   .init.scripts.comment "nfsserver" $["nfsserver":$[], "rpcbind":$[]]
-Execute        .target.bash_output "/bin/systemctl enable nfsserver.service" 
$["exit":0, "stderr":"", "stdout":""]
+Execute        .target.bash "/bin/systemctl is-enabled rpcbind.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfslock.service" 0
+Execute        .target.bash "/bin/systemctl is-enabled nfsserver.service" 0
 Execute        .target.bash "/bin/systemctl status idmapd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash "/bin/systemctl status svcgssd.service" 
$["TERM":"raw"] 0
 Execute        .target.bash_output "/bin/systemctl stop svcgssd.service" 
$["TERM":"raw"] $["exit":0, "stderr":"", "stdout":""]

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to