Add support for dnf #145
Labels
No labels
bugfix
cleanup
discussion
documentation
doing
done
feature
improvement
packaging
Stale
testing
TODO
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: ungleich-public/cdist#145
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Created by: schvabodka-man
Hello. Currently yum is getting obsolete in RHEL/Fedora/CentOS and it's being replaced by the dnf. The cdist still doesn't have "native" support for dnf, only __package_yum and this makes cdist hard to use on new fedora/centos versions. Would be really awesome if there would be __package_dnf
mentioned in issue #799
@fnux Here you are.
assigned to @fnux
reopened
I just bumped into this trying to make matrix types. Can you reopen the issue / assign it to me?
closed
Created by: sideeffect42
@schvabodka-man Isn't
yum
symlinked todnf
on RedHat systems with dnf?Regarding the PR:
Are the dnf commands different from their yum equivalents?
If not you could just copy the
__package_yum
type to__package_dnf
and replace occurences of "yum" with "dnf".Plus a bit of code in
__package
to select the right type.Created by: schvabodka-man
That would be hard to provide because i obliviously don't have code for pull request
Created by: darko-poljak
Can you perhaps provide PR with new __package_dnf type?