Hello community,

here is the log from the commit of package linuxrc for openSUSE:Factory checked 
in at 2016-11-21 14:22:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/linuxrc (Old)
 and      /work/SRC/openSUSE:Factory/.linuxrc.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "linuxrc"

Changes:
--------
--- /work/SRC/openSUSE:Factory/linuxrc/linuxrc.changes  2016-10-18 
10:09:51.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes     2016-11-21 
14:22:25.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Nov 18 14:15:58 UTC 2016 - [email protected]
+
+- Clean up: removed "regcert", "smturl" and "smtcert" options. (bsc#943966)
+- 5.0.88
+
+-------------------------------------------------------------------

Old:
----
  linuxrc-5.0.87.tar.xz

New:
----
  linuxrc-5.0.88.tar.xz

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

Other differences:
------------------
++++++ linuxrc.spec ++++++
--- /var/tmp/diff_new_pack.wJyW9o/_old  2016-11-21 14:22:26.000000000 +0100
+++ /var/tmp/diff_new_pack.wJyW9o/_new  2016-11-21 14:22:26.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           linuxrc
-Version:        5.0.87
+Version:        5.0.88
 Release:        0
 Summary:        SUSE Installation Program
 License:        GPL-3.0+

++++++ linuxrc-5.0.87.tar.xz -> linuxrc-5.0.88.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.87/VERSION new/linuxrc-5.0.88/VERSION
--- old/linuxrc-5.0.87/VERSION  2016-10-14 13:55:49.000000000 +0200
+++ new/linuxrc-5.0.88/VERSION  2016-11-18 15:14:07.000000000 +0100
@@ -1 +1 @@
-5.0.87
+5.0.88
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.87/changelog new/linuxrc-5.0.88/changelog
--- old/linuxrc-5.0.87/changelog        2016-10-14 13:55:49.000000000 +0200
+++ new/linuxrc-5.0.88/changelog        2016-11-18 15:14:07.000000000 +0100
@@ -1,3 +1,6 @@
+2016-11-18:    5.0.88
+       - Clean up: removed "regcert", "smturl" and "smtcert" options. (bsc 
#943966)
+
 2016-10-14:    5.0.87
        - parse netwait option earlier (bsc #995304)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.87/file.c new/linuxrc-5.0.88/file.c
--- old/linuxrc-5.0.87/file.c   2016-10-14 13:55:49.000000000 +0200
+++ new/linuxrc-5.0.88/file.c   2016-11-18 15:14:07.000000000 +0100
@@ -273,9 +273,6 @@
   { key_device,         "Device",         kf_cfg + kf_cmd                },
   { key_nomdns,         "NoMDNS",         kf_cfg + kf_cmd                },
   { key_yepurl,         "regurl",         kf_cfg + kf_cmd                },
-  { key_yepcert,        "regcert",        kf_cfg + kf_cmd                },
-  { key_yepurl,         "smturl",         kf_cfg + kf_cmd                },
-  { key_yepcert,        "smtcert",        kf_cfg + kf_cmd                },
   { key_mediacheck,     "mediacheck",     kf_cfg + kf_cmd_early          },
   { key_y2gdb,          "Y2GDB",          kf_cfg + kf_cmd                },
   { key_squash,         "squash",         kf_cfg + kf_cmd                },
@@ -1574,10 +1571,6 @@
         str_copy(&config.yepurl, f->value);
         break;
 
-      case key_yepcert:
-        str_copy(&config.yepcert, f->value);
-        break;
-
       case key_y2gdb:
         if(f->is.numeric) config.y2gdb = f->nvalue;
         break;
@@ -2005,7 +1998,6 @@
   }
 
   file_write_str(f, key_yepurl, config.yepurl);
-  file_write_str(f, key_yepcert, config.yepcert);
 
   file_write_str(f, key_supporturl, config.supporturl);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.87/file.h new/linuxrc-5.0.88/file.h
--- old/linuxrc-5.0.87/file.h   2016-10-14 13:55:49.000000000 +0200
+++ new/linuxrc-5.0.88/file.h   2016-11-18 15:14:07.000000000 +0100
@@ -47,7 +47,7 @@
   key_ibft_hwaddr, key_ibft_ipaddr, key_ibft_netmask, key_ibft_gateway,
   key_ibft_dns, key_net_retry, key_bootif, key_swap_size, key_ntfs_3g,
   key_hash, key_insecure, key_kexec, key_nisdomain, key_nomodprobe, key_device,
-  key_nomdns, key_yepurl, key_yepcert, key_mediacheck, key_y2gdb, key_squash,
+  key_nomdns, key_yepurl, key_mediacheck, key_y2gdb, key_squash,
   key_kexec_reboot, key_devbyid, key_braille, key_nfsopts, key_ipv4, 
key_ipv4only,
   key_ipv6, key_ipv6only, key_efi, key_supporturl, key_portno,
   key_osahwaddr, key_zen, key_zenconfig, key_udevrule, key_dhcpfail,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.87/global.h new/linuxrc-5.0.88/global.h
--- old/linuxrc-5.0.87/global.h 2016-10-14 13:55:49.000000000 +0200
+++ new/linuxrc-5.0.88/global.h 2016-11-18 15:14:07.000000000 +0100
@@ -466,7 +466,6 @@
   char *autoyast;              /* yast autoinstall parameter */
   char *autoyast2;             /* yast autoinstall parameter, loaded by 
linuxrc */
   char *yepurl;                        /* just pass it to yast */
-  char *yepcert;               /* just pass it to yast */
   char *supporturl;            /* just pass it to yast */
   slist_t *linuxrc;            /* 'linuxrc' parameters */
   int color;                   /* color scheme: 0-3: undef, mono, color, 
alternate */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/linuxrc-5.0.87/linuxrc_yast_interface.txt 
new/linuxrc-5.0.88/linuxrc_yast_interface.txt
--- old/linuxrc-5.0.87/linuxrc_yast_interface.txt       2016-10-14 
13:55:49.000000000 +0200
+++ new/linuxrc-5.0.88/linuxrc_yast_interface.txt       2016-11-18 
15:14:07.000000000 +0100
@@ -137,12 +137,6 @@
 # - code for this is at a strange place in linuxrc, should be moved -
 regurl: %s
 
-# certificates for registration server, use 'regcert' boot option to set
-# fate#303335
-# entry is missing if unset
-# - code for this is at a strange place in linuxrc, should be moved -
-regcert: %s
-
 # URL for uploadeing supportconfig data, use 'supporturl' boot option to set
 # fate#305180
 # entry is missing if unset


Reply via email to