From 0123a785d9898c16a1f1629d8b0c9d57b67252f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imobach=20Gonz=C3=A1lez=20Sosa?= Date: Fri, 3 Jun 2016 16:23:35 +0100 Subject: [PATCH] Fix ssh_import schema * The latest version uses 'copy_config' instead of only 'config'. --- package/autoyast2.changes | 7 +++++++ package/autoyast2.spec | 2 +- src/autoyast-rnc/ssh-import.rnc | 6 +++--- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/package/autoyast2.changes b/package/autoyast2.changes index e34803197..ba5b571a2 100644 --- a/package/autoyast2.changes +++ b/package/autoyast2.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Jun 3 15:22:02 UTC 2016 - igonzalezsosa@suse.com + +- Fix AutoYaST2 schema regarding SSH keys/configuration import + feature (fate#319624) +- 3.1.130 + ------------------------------------------------------------------- Wed May 25 13:50:40 CEST 2016 - schubi@suse.de diff --git a/package/autoyast2.spec b/package/autoyast2.spec index 93e063a2d..6365ab2eb 100644 --- a/package/autoyast2.spec +++ b/package/autoyast2.spec @@ -17,7 +17,7 @@ Name: autoyast2 -Version: 3.1.129 +Version: 3.1.130 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff --git a/src/autoyast-rnc/ssh-import.rnc b/src/autoyast-rnc/ssh-import.rnc index 9ea75644d..9287ac842 100644 --- a/src/autoyast-rnc/ssh-import.rnc +++ b/src/autoyast-rnc/ssh-import.rnc @@ -4,7 +4,7 @@ namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0" ssh_import = element ssh_import { - element import { BOOLEAN }? & - element config { BOOLEAN }? & - element device { text }? + element import { BOOLEAN }? & + element copy_config { BOOLEAN }? & + element device { text }? } \ No newline at end of file