| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
To build in container-based environment because of speed.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Resolves: #75
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
For currently unknown reason the dbus-send calls will fail to set the
firewall zone for the given interface if we omit the --print-reply
option...
This looks like some kind of race-condition in dbus-send, since the
--print-reply makes the call synchronous and slower.
Hopefully this is only a temporary workaround until DBus is fixed.
Resolves: #1586284
|
|
|
|
|
|
|
| |
This was causing the DBus call to fail, and we didn't catch it before
since we were forwarding everything into /dev/null...
Related: RHBZ#1586284
|
| |
|
| |
|
| |
|
|
|
|
| |
Resolves: RHBZ#1585321
|
|
|
|
| |
This was causing RPM build to fail, since it couldn't find the file.
|
| |
|
| |
|
| |
|
|
|
|
| |
Resolves: #105
|
| |
|
|
|
|
|
| |
It has been moved into the hostname package:
https://src.fedoraproject.org/rpms/hostname/pull-request/1
|
|
|
|
|
|
|
| |
This removes the OS flavour embedded into the initscripts. See also:
https://bugzilla.redhat.com/show_bug.cgi?id=1584645
Resolves: #161
|
|
|
|
|
|
| |
During previous cleanup, where we removed the symlinks to fedora-*
services, we forgot to add the fedora-domainname.service into the
systemd macros.
|
| |
|
| |
|
|
|
|
| |
This concept is quite outdated, and not sane to use at all.
|
| |
|
|
|
|
|
| |
Other references to these files were removed, as well as irrelevant
info in sysconfig.txt, and some dead code in init.d/functions file.
|
|
|
|
| |
The dependance on 'consoletype' binary has been removed.
|
|
|
|
|
|
| |
It has been agreed that maintainers of 'policycoreutils' will either
accept the pull-request, or they will close it if the sushell is no
longer needed...
|
|
|
|
| |
No longer build or used by anything else in initscripts.
|
|
|
|
|
| |
This file was not referenced anywhere, is not called inside Makefile,
and the build succeeds without it. Looks like an artifact from past.
|
|
|
|
|
| |
This script has been obsoleted by other concepts in Fedora, and using
it can be quite dangerous nowadays...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Most of these files were more than 15 years old, making them no
longer valid or just simply outdated... Files removed:
* changes.ipv6
* ipv6-*.howto
* sysvinitfiles
Regarding the 'sysvinitfiles' -- the 'initscripts' package is nowadays
intended for keeping the support for old init scripts still used
somewhere. However, for creating new services people should use
systemd now...
|
|
|
|
| |
Use 'git log' instead...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This installs the real scripts into /etc/sysconfig/network-scripts
while leaving the management of the launchers in /usr/sbin to the
alternatives system.
This allows coexistence with alternative implementations of ifup
and ifdown, notably NetworkManager.
A priority of 90 is chosen rather arbitrarily, NetworkManager will
use a lower one (50) so that our implementation takes precedence over
NetworkManaager in case both are installed. In an unlikely event the
user will want to switch to NetworkManager implementations when both
are installed they can override the default with:
$ update-alternatives --config ifup
|
|
|
|
|
| |
The line /etc/adjtime has been kept in rwtab, to not break the
readonly-root...
|
|
|
|
|
| |
The specfile should follow the Fedora Packaging Guidelines now:
https://fedoraproject.org/wiki/Packaging:Guidelines
|
|
|
|
| |
Also, the po/.cvsignore has been removed...
|
|
|
|
|
| |
'check' and 'syntax-check' rules were dropped, as they seem obsolete
nowadays (we are not using them at all)...
|
|
|
|
| |
po/initscripts.pot updated as well
|
|
|
|
|
| |
The rules have been unified, build results are now in build/
subfolder, and it uses GNU naming for the system paths...
|
|
|
|
|
| |
NOTE: This commit just moves files around, without actually fixing the
Makefiles and specfile. See follow up commits which resolve this.
|
|
|
|
|
|
|
|
|
| |
Due to some change in bash-4.4, it started to give out warnings about
ignored null-byte characters in the command substitution:
https://bugzilla.redhat.com/show_bug.cgi?id=1472137#c2
Resolves: RHBZ#1583338
|
| |
|
|
|
|
|
| |
... Without appending the 'ro' to mount options of '/' mount point the
system will be still mounted as read-write, even when READONLY=yes.
|
|
|
|
|
|
|
|
| |
$" is a BASH extension to translate text.
Replace the shebang with /bin/bash to avoid parsing errors,
as even BASH has a POSIX compliant mode when run as sh.
Signed-off-by: Matteo Croce <mcroce@redhat.com>
|
|
|
|
| |
https://bugzilla.redhat.com/show_bug.cgi?id=1512688
|