-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build systemd for all Linuxes #5379
Conversation
def get_distro_exclude_tags(): | ||
""" | ||
Get tags that should be excluded for current distro. | ||
""" | ||
distro_name = distro.id().lower() | ||
exclude = [] | ||
if distro_name not in REDHAT_DEBIAN_SUSE_DIST: | ||
exclude.extend(REDHAT_DEBIAN_SUSE_ONLY_TAGS) | ||
return exclude | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this means we're not using distro
anymore anywhere (I only see it imported but not used in this file & the tasks/android.py
file). We may be able to get rid of this dependency then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will remove it.
a44668d
to
a377fbc
Compare
What does this PR do?
Add the systemd build tag for all Linux distros.
Motivation
Most Linux distros have adopted systemd.