| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since initscripts requires these packages anyway, the obsoletes
aren't necessary. They're only useful if you split off a new
subpackage and *don't* have the main package require it, but
you still want it to be installed on updates. In this case,
initscripts requires both initscripts-rename-device and
initscripts-service, so there's no need for them to obsolete
older versions of it.
The initscripts-rename-device obsoletes was somehow messing up
live image creation during the openQA update test (caused the
live image not to include initscripts at all). This fixes that.
Signed-off-by: Adam Williamson <awilliam@redhat.com>
(cherry picked from commit 4e39c08825a55107a6accf7ad7b4d82ddd30e9ec)
|
| |
|
|
|
|
| |
It allows to rename_device to be installed independently on initscripts.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
How to reproduce:
```sh
(. /etc/sysconfig/network-scripts/network-functions; is_nm_running && echo "yes")
```
Resolves: #1832897
Co-authored-by: Till Maas <opensource@till.name>
|
| |
|
| |
|
| |
|
|
|
|
| |
Add strong relation between initscripts and initscripts-service.
Also update Obsoletes of initscripts package.
|
| |
|
|
|
| |
Obsoletes with initscripts < 10.10 in order to allow the initscripts-service package to be installed while upgrading from initscripts < 10.10
|
| |
|
|
|
|
|
|
|
|
| |
The network-scripts package is legacy and deprecated, so nobody should depend on this!
If ifcfg-style configuration is still desired, NetworkManager can do this.
Thus, mark this as deprecated to ensure people know to not depend on it.
Reference: https://docs.fedoraproject.org/en-US/packaging-guidelines/deprecating-packages/
|
|
|
| |
As a easy way to get full legacy system V support.
|
|
|
|
|
|
|
|
|
|
| |
This changes moves service script into initscripts-service subpackage.
The subpackage could be install without main package.
This change allows audit not to require initscripts and require only
initscripts-service instead.
Requested by: msekleta@redhat.com
|
| |
|
| |
|
|
|
|
|
| |
Add BuildRequires: make
https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot
|
| |
|
| |
|
|
|
| |
Start using legacy date-stamp to remain consistent changelog
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Resolve problem when wasn't installed chkconfig package. BZ #1716386
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Because the return value of 'convert2sec()' function can sometimes be
decimal, the follow up 'expr' call can fail, since 'expr' does not
support floating point calculations. This can sometimes lead to error:
"""
expr: non-integer argument
/etc/sysconfig/network-scripts/ifup-eth: line 91: [: 0: unary operator
expected
"""
To solve this bug, we switch to 'bc' utility, which supports floating
point computations. We also have to change the comparison condition of
$LINKDELAY and $forward_delay to use 'bc' as well.
|
| |
|
|
|
|
|
|
| |
This will allow services to install drop-in files into these folders
for the 'readonly-root' service, but that service won't have to be
installed by default as a result...
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This makes sure all the subpackages stay installed during the upgrade
for Fedora users. After that users will be able to manually remove the
packages if needed...
Fresh installations will have only initscripts installed.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This was causing RPM build to fail, since it couldn't find the file.
|
| |
|
|
|
|
|
| |
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
|