diff options
author | Adrien Nader <adrien@notk.org> | 2017-11-19 05:40:09 +0100 |
---|---|---|
committer | Adrien Nader <adrien@notk.org> | 2017-11-19 05:40:09 +0100 |
commit | e10c4689d2bc1518ab1f24cbdc30a179d07ab006 (patch) | |
tree | b216b8fb60653dd917024c5baa6bbb60a5a42552 /slackware64-current/source/a/sysvinit-scripts | |
parent | 620595381d5a369046a4ca1d5564464693069c73 (diff) |
Sun Nov 19 03:36:30 UTC 2017
a/eudev-3.2.4-x86_64-3.txz: Rebuilt.
Blacklist all EDAC modules by default as they make some systems unstable.
a/kernel-generic-4.14.0-x86_64-2.txz: Upgraded.
a/kernel-huge-4.14.0-x86_64-2.txz: Upgraded.
a/kernel-modules-4.14.0-x86_64-2.txz: Upgraded.
a/sysvinit-scripts-2.1-noarch-1.txz: Upgraded.
rc.M: Don't try to run rc.sendmail unless /usr/sbin/makemap is present.
rc.M: Don't try to run rc.postfix unless /usr/sbin/postdrop is present.
rc.S: Source /etc/default/adjtimex.
ap/cgmanager-0.41-x86_64-3.txz: Rebuilt.
Prevent the rc.cgmanger script from killing itself at shutdown.
ap/joe-4.5-x86_64-1.txz: Upgraded.
ap/nano-2.9.0-x86_64-1.txz: Upgraded.
d/kernel-headers-4.14.0-x86-2.txz: Upgraded.
k/kernel-source-4.14.0-noarch-2.txz: Upgraded.
-BOOTPARAM_HARDLOCKUP_PANIC n
-BOOTPARAM_HARDLOCKUP_PANIC_VALUE 0
-BOOTPARAM_SOFTLOCKUP_PANIC n
-BOOTPARAM_SOFTLOCKUP_PANIC_VALUE 0
-HARDLOCKUP_DETECTOR_PERF y
-LOCKUP_DETECTOR y
BLK_DEV_IO_TRACE y -> n
BUG_ON_DATA_CORRUPTION y -> n
DEBUG_LIST y -> n
DRM_AMDGPU_CIK n -> y
DRM_AMDGPU_SI n -> y
EDAC_DECODE_MCE y -> m
HARDLOCKUP_DETECTOR y -> n
SOFTLOCKUP_DETECTOR y -> n
n/postfix-3.2.4-x86_64-2.txz: Rebuilt.
Make the start message in postfix-script look a bit more correct for when
it shows up during boot.
n/yptools-2.14-x86_64-9.txz: Rebuilt.
rc.yp: Fix setting nisdomainname.
extra/tigervnc/tigervnc-1.8.0-x86_64-3.txz: Rebuilt.
Rebuilt against xorg-server-1.19.5.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'slackware64-current/source/a/sysvinit-scripts')
3 files changed, 6 insertions, 6 deletions
diff --git a/slackware64-current/source/a/sysvinit-scripts/scripts/rc.M b/slackware64-current/source/a/sysvinit-scripts/scripts/rc.M index 393356b97..0cd9f0b52 100644 --- a/slackware64-current/source/a/sysvinit-scripts/scripts/rc.M +++ b/slackware64-current/source/a/sysvinit-scripts/scripts/rc.M @@ -323,9 +323,9 @@ if [ -x /etc/rc.d/rc.saslauthd ]; then fi # Start the mail server. Try the rc.sendmail script first, then try rc.postfix. -if [ -x /etc/rc.d/rc.sendmail ]; then +if [ -x /etc/rc.d/rc.sendmail -a -x usr/sbin/makemap ]; then /etc/rc.d/rc.sendmail start -elif [ -x /etc/rc.d/rc.postfix ]; then +elif [ -x /etc/rc.d/rc.postfix -a -x usr/sbin/postdrop ]; then /etc/rc.d/rc.postfix start fi diff --git a/slackware64-current/source/a/sysvinit-scripts/scripts/rc.S b/slackware64-current/source/a/sysvinit-scripts/scripts/rc.S index 1d4da51fc..78e68e40a 100644 --- a/slackware64-current/source/a/sysvinit-scripts/scripts/rc.S +++ b/slackware64-current/source/a/sysvinit-scripts/scripts/rc.S @@ -189,7 +189,7 @@ FREQ=0 # If there's a /etc/default/adjtimex config file, source it to override # the default TICK and FREQ: if [ -r /etc/default/adjtimex ]; then - /etc/default/adjtimex + . /etc/default/adjtimex fi if /sbin/adjtimex --tick $TICK --frequency $FREQ; then echo "Setting the system clock rate: /sbin/adjtimex --tick $TICK --frequency $FREQ" diff --git a/slackware64-current/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild b/slackware64-current/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild index 6a33b917b..3d13484aa 100755 --- a/slackware64-current/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild +++ b/slackware64-current/source/a/sysvinit-scripts/sysvinit-scripts.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2005-2016 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2005-2017 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,9 +21,9 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=${VERSION:-2.0} +VERSION=${VERSION:-2.1} ARCH=noarch -BUILD=${BUILD:-39} +BUILD=${BUILD:-1} CWD=$(pwd) TMP=${TMP:-/tmp} |