-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Fix REMOTETAGS #6230
Fix REMOTETAGS #6230
Conversation
Handle REMOTETAGS the same way for all remote commands. This fixes issues where remote commands are not building correctly on rhel7 and centos7 systems. Signed-off-by: Daniel J Walsh <[email protected]>
@@ -22,6 +22,7 @@ ETCDIR ?= /etc | |||
TMPFILESDIR ?= ${PREFIX}/lib/tmpfiles.d | |||
SYSTEMDDIR ?= ${PREFIX}/lib/systemd/system | |||
USERSYSTEMDDIR ?= ${PREFIX}/lib/systemd/user | |||
REMOTETAGS := !ABISupport remoteclient exclude_graphdriver_btrfs btrfs_noversion exclude_graphdriver_devicemapper containers_image_openpgp |
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.
Should we use the hack/ scripts to determine whether btrfs, seccomp, etc are included?
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.
No, We don't want this code compiled into remoteclient. In a perfect world we would not hit this. The btrfs and devicemapper flags are for containers/image and containers/storage and prevent btrfs and devicemapper from being compiled into the client.
LGTM assuming happy tests |
Manually setting hold and LGTM |
/hold cancel |
Handle REMOTETAGS the same way for all remote commands.
This fixes issues where remote commands are not building correctly on rhel7 and centos7 systems.
Signed-off-by: Daniel J Walsh [email protected]