commit linuxrc for openSUSE:Factory
Hello community, here is the log from the commit of package linuxrc for openSUSE:Factory checked in at 2016-11-29 12:48:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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-11-21 14:22:25.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.linuxrc.new/linuxrc.changes 2016-11-29 12:48:32.000000000 +0100 @@ -1,0 +2,18 @@ +Mon Nov 28 08:00:19 UTC 2016 - snwint@suse.com + +- added dependencies to README +- 5.0.91 + +------------------------------------------------------------------- +Thu Nov 24 16:05:23 UTC 2016 - snwint@suse.com + +- keep rsyslogd running +- 5.0.90 + +------------------------------------------------------------------- +Thu Nov 24 14:00:55 UTC 2016 - snwint@suse.com + +- Implemented Loghost functionality +- 5.0.89 + +------------------------------------------------------------------- Old: ---- linuxrc-5.0.88.tar.xz New: ---- linuxrc-5.0.91.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linuxrc.spec ++++++ --- /var/tmp/diff_new_pack.c1m6Lh/_old 2016-11-29 12:48:33.000000000 +0100 +++ /var/tmp/diff_new_pack.c1m6Lh/_new 2016-11-29 12:48:33.000000000 +0100 @@ -17,7 +17,7 @@ Name: linuxrc -Version: 5.0.88 +Version: 5.0.91 Release: 0 Summary: SUSE Installation Program License: GPL-3.0+ ++++++ linuxrc-5.0.88.tar.xz -> linuxrc-5.0.91.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.88/README.md new/linuxrc-5.0.91/README.md --- old/linuxrc-5.0.88/README.md 2016-11-18 15:14:07.000000000 +0100 +++ new/linuxrc-5.0.91/README.md 2016-11-28 08:55:46.000000000 +0100 @@ -3,6 +3,13 @@ See <https://en.opensuse.org/SDB:Linuxrc>. +## Requirements +Building linuxrc will require some additional dependencies. + +For example on openSUSE/SUSE distributions run: +```sh +zypper install e2fsprogs-devel hwinfo-devel libblkid-devel libcurl-devel readline-devel +``` ## Debugging ### Run on Installed System diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.88/VERSION new/linuxrc-5.0.91/VERSION --- old/linuxrc-5.0.88/VERSION 2016-11-18 15:14:07.000000000 +0100 +++ new/linuxrc-5.0.91/VERSION 2016-11-28 08:55:46.000000000 +0100 @@ -1 +1 @@ -5.0.88 +5.0.91 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.88/changelog new/linuxrc-5.0.91/changelog --- old/linuxrc-5.0.88/changelog 2016-11-18 15:14:07.000000000 +0100 +++ new/linuxrc-5.0.91/changelog 2016-11-28 08:55:46.000000000 +0100 @@ -1,3 +1,12 @@ +2016-10-06: 5.0.91 + - added dependencies to README + +2016-11-24: 5.0.90 + - keep rsyslogd running + +2016-11-22: 5.0.89 + - Implemented Loghost functionality + 2016-11-18: 5.0.88 - Clean up: removed "regcert", "smturl" and "smtcert" options. (bsc #943966) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.88/linuxrc.c new/linuxrc-5.0.91/linuxrc.c --- old/linuxrc-5.0.88/linuxrc.c 2016-11-18 15:14:07.000000000 +0100 +++ new/linuxrc-5.0.91/linuxrc.c 2016-11-28 08:55:46.000000000 +0100 @@ -521,7 +521,7 @@ "portmap", "rpciod", "lockd", "cifsd", "mount.smbfs", "udevd", "mount.ntfs-3g", "brld", "sbl", "wickedd", "wickedd-auto4", "wickedd-dhcp4", "wickedd-dhcp6", "wickedd-nanny", "dbus-daemon", "rpc.idmapd", "sh", "haveged", - "wpa_supplicant" + "wpa_supplicant", "rsyslogd" }; int i; @@ -1278,6 +1278,8 @@ util_update_kernellog(); + if(config.loghost) util_run_script("remote_log_setup"); + #if !(defined(__PPC__) || defined(__sparc__)) if(config.manual || reboot_wait_ig) { config.rebootmsg = 1; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-5.0.88/util.c new/linuxrc-5.0.91/util.c --- old/linuxrc-5.0.88/util.c 2016-11-18 15:14:07.000000000 +0100 +++ new/linuxrc-5.0.91/util.c 2016-11-28 08:55:46.000000000 +0100 @@ -4549,6 +4549,8 @@ setenv("linuxrc_debug", buf, 1); } + if(config.loghost) setenv("LOGHOST", config.loghost, 1); + strprintf(&buf, "/scripts/%s", name); lxrc_run(buf);
participants (1)
-
root@hilbert.suse.de