aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 9.75-19.75David Kaspar [Dee'Kej]2017-08-071-1/+8
|
* Makefile: $ROOT variable is now empty by defaultDavid Kaspar [Dee'Kej]2017-08-071-1/+1
|
* Makefile: Fix additional error in commit b119d37d1David Kaspar [Dee'Kej]2017-08-071-4/+4
|
* ifup-eth: wait for STP to complete setup on bridge if $DELAY is not setDavid Kaspar [Dee'Kej]2017-08-071-4/+21
| | | | | Otherwise obtaining IP from DHCP might fail. Based on patch from: * Rich Alloway <richard.alloway@roguewave.com> | CentOS BZ #0011138
* init.d/functions: is_true() & is_false() extended by ON/OFF supportDavid Kaspar [Dee'Kej]2017-08-071-2/+2
| | | | | In some cases we are using "on" or "off" as values. is_true() and is_false() can be used for evaluation of these values as well.
* init.d/functions: convert2sec() function addedDavid Kaspar [Dee'Kej]2017-08-072-1/+17
| | | | | | | | | | And network-scripts/network-functions was patched to use convert2sec(). This function can be used to convert the value of its first parameter to a number of seconds - based on the time unit (specified as the second parameter). This is mostly useful for converting values for use with the sleep(1).
* 9.74-19.74David Kaspar [Dee'Kej]2017-08-041-1/+4
|
* Makefile: fix whitespace error in commit b119d37d1David Kaspar [Dee'Kej]2017-08-041-1/+1
|
* 9.73-1David Kaspar [Dee'Kej]2017-08-031-1/+9
|
* Makefile: replace /var/run with /runZbigniew Jędrzejewski-Szmek2017-08-031-3/+7
| | | | | | Do not create anything under /run when $(ROOT) is non-empty: when we're installing into a chroot /run might not be mounted, and creating files there is counterproductive.
* Replace /var/run with /run everywhereZbigniew Jędrzejewski-Szmek2017-08-0313-30/+30
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=1471489
* Update references to sysctl.confZbigniew Jędrzejewski-Szmek2017-07-271-5/+5
| | | | | This file hasn't been called that for a while, so update various references to the new sysctl.d names.
* Drop sysctl.d/00-system.confZbigniew Jędrzejewski-Szmek2017-07-273-15/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | This file now only contains lines to disable netfilter on bridges. In kernel 3.18 this filtering functionality was made non-default by moving it to br_netfilter [https://bugzilla.redhat.com/show_bug.cgi?id=512206]. Aybody who actually wants to use br_netfilter has to load it explicitly anyway, so disabling it through sysctl isn't necessary anymore. The reason for removal is that by default (i.e. when br_netfilter is not loaded), we get a warning on every boot: systemd-sysctl[210]: Couldn't write '0' to 'net/bridge/bridge-nf-call-ip6tables', ignoring: No such file or directory systemd-sysctl[210]: Couldn't write '0' to 'net/bridge/bridge-nf-call-iptables', ignoring: No such file or directory systemd-sysctl[210]: Couldn't write '0' to 'net/bridge/bridge-nf-call-arptables', ignoring: No such file or directory This is confusing for users and inelegant. The downside of removing this file is for people who load br_netfilter for some reason *and* do no want to use it, will have to take an additional step now (either restore the sysctl settings or remove br_netfilter from /etc/modules-load.d or wherever). I expect the number of people affected to be very small. (Note that the file was overwritten on sparc and s390, so those architectures see no change.)
* Drop 256term.{sh,csh}Zbigniew Jędrzejewski-Szmek2017-07-213-52/+0
| | | | | | | | | | | | | | From https://fedoraproject.org/wiki/Changes/Drop_256term.sh: This is a work-around and it's better to for the terminal emulator to set $TERM properly on its own. Various terminal emulators have been updated to do that. When those scripts are removed, whatever the virtual terminal or terminal emulator sets as $TERM will be used. Fixes #107. C.f. https://bugzilla.redhat.com/show_bug.cgi?id=1165439.
* ARPUPDATE introducedDavid Kaspar [Dee'Kej]2017-07-144-2/+15
| | | | | | | | | The ARPUPDATE option has been introduced. It defaults to 'yes'. By setting the ARPUPDATE to 'no', administrator can disable updating neighbouring computers with ARP information about current NIC. This is especially needed when using LVS Load Balancing with Direct routing enabled.
* 9.72-19.72David Kaspar [Dee'Kej]2017-05-251-1/+6
|
* rename_device.c: rewrite of isCfg() functionDavid Kaspar [Dee'Kej]2017-05-251-12/+32
| | | | | * .orig & .old now recognized as config files * code cleanup
* Add *.old to list of ignored filesDavid Kaspar [Dee'Kej]2017-05-251-2/+2
|
* Replace usleep(1) calls with sleep(1) callsDavid Kaspar [Dee'Kej]2017-05-253-5/+9
| | | | | The time units had to be manually converted from microseconds to seconds. Hopefully this was done right.
* usleep.1: Deprecation warning added into man pageDavid Kaspar [Dee'Kej]2017-05-251-0/+5
|
* 9.71-19.71David Kaspar [Dee'Kej]2017-05-251-1/+16
|
* usleep: print deprecation warning from now onDavid Kaspar [Dee'Kej]2017-05-241-0/+3
|
* sysconfig.txt: mention previously introduced NO_DHCP_HOSTNAME optionDavid Kaspar [Dee'Kej]2017-05-031-0/+4
|
* DHCP_FQDN and DHCP_SEND_HOSTNAME introducedDavid Kaspar [Dee'Kej]2017-05-034-16/+53
| | | | | | | | | | | | | | The way DHCP_HOSTNAME is being sent to DHCP server has been completely reworked... DHCP_FQDN now allows user to specify fully qualified domain name to be sent to DHCP server instead of just using simple hostname. This option takes precedence before DHCP_HOSTNAME variable. DHCP_SEND_HOSTNAME can be used to tell initscripts to not send either DHCP_HOSTNAME or DHCP_FQDN to DHCP server. Both of these options should behave same as they do in NetworkManager.
* re-add missing $HOSTNAME initializationDavid Kaspar [Dee'Kej]2017-04-262-3/+9
|
* ifup: add support for VLAN_EGRESS_PRIORITY_MAPLukas Nykryn2017-04-111-0/+2
|
* specfile: mark 'rwtab' and 'statetab' as config filesDavid Kaspar [Dee'Kej]2017-03-281-2/+2
|
* killproc/status: add missing '-b <binary>' optionDavid Kaspar [Dee'Kej]2017-03-281-5/+30
| | | | Taken from RHEL-6.9, for forward compatibility.
* ifdown-eth: we need to flush global scope as wellLukas Nykryn2017-03-281-1/+4
| | | | ... but it is stuck some time
* ifup-eth: remove quote marksLukas Nykryn2017-03-221-1/+1
| | | | | With quote marks all the parameters to dhclient are passed as one Resolves: #1410429
* po: download latest translations from zanataLukas Nykryn2017-03-2260-147045/+12518
|
* rwtab: add /var/lib/systemd/timersJan Synacek2017-03-091-0/+1
| | | | Resolves: #1414090
* Update initscripts.potPiotr Drąg2017-03-011-144/+155
|
* Port headers in xgettext_sh.py to 2017Piotr Drąg2017-03-011-6/+9
|
* 9.70-19.70Lukas Nykryn2017-02-272-18/+7
| | | | Move everything to github
* Remove duplicate Basque translationPiotr Drąg2017-02-271-696/+0
| | | The correct language code for Basque is “eu”, which already exists in initscripts, and this duplicate file is empty anyway.
* Makefile: remove autorelabel stuffLukas Nykryn2017-02-271-2/+0
| | | | autorelabel was moved to selinux package
* ipv6_add_addr_on_device: replace the existing address on NICDavid Kaspar [Dee'Kej]2017-02-271-1/+1
| | | | | | | | Instead of adding the IPv6 address when ifup is called, we replace the address, because it might have been auto-assigned before by RA. This is to assure that static NIC configuration will take effect if the NIC was already dynamically configured by RA.
* network: load NetworkManager connection via dbusPetr Horáček2017-02-141-1/+9
| | | | | Use dbus to refresh configuration files for NetworkManager in order to make ifup and ifdown faster.
* network: check for running NetworkManager via dbusPetr Horáček2017-02-141-1/+5
| | | | Use dbus instead of nmcli to make ifup command faster.
* sysconfig/network: NO_DHCP_HOSTNAME option introducedDavid Kaspar [Dee'Kej]2016-11-162-9/+29
| | | | | | | Previously, some administrators were unable to force initscripts to not obtatin hostname from DHCP, even though they were using static configuration of network. Righ now, setting 'NO_DHCP_HOSTNAME' to 'yes', 'true' or '1' in /etc/sysconfig/network will allow them to do so.
* fix typo in IPV6_SET_SYSCTLSPavel Šimerda2016-11-151-1/+1
| | | | | | | Typo introduced in commit 432951d. Related: https://github.com/fedora-sysv/initscripts/pull/2 Signed-off-by: Pavel Šimerda <pavlix@pavlix.net>
* network-functions: do not send hostname via dhclient everytimeDavid Kaspar [Dee'Kej]2016-11-102-9/+25
|
* ipv6_wait_tentative(): exit immediately when dadfailed occursDavid Kaspar [Dee'Kej]2016-11-011-3/+22
|
* network: don't put down network when /usr is remote-fsLukas Nykryn2016-11-011-6/+3
| | | | | | | | | Nowadays /usr is a essential part of system and if it is on network, we need to unmount it in shutdown dracut. Also parsing /etc/mtab does not work anymore. Fixes: rhbz#1369790
* netconsole: resolve domain name via 'getent' instead of 'hosts'David Kaspar [Dee'Kej]2016-11-011-3/+20
|
* ifup-eth: if arping fails, output responding MACLukas Nykryn2016-10-312-4/+6
| | | | Resolves: #1099026
* ifup-post: introduce new configuration option NOROUTESETDavid Kaspar [Dee'Kej]2016-10-311-1/+3
| | | | This has patch has been suggested in RHBZ #950453, by Konrad Moson.
* ifup-post: use is_false() function instead of checking for "no" stringDavid Kaspar [Dee'Kej]2016-10-311-2/+5
|
* ifup-aliases: send gratuitous ARPs when adding addressesLukas Nykryn2016-10-311-0/+6
|