-
Notifications
You must be signed in to change notification settings - Fork 21
Move subscription-manager auto-attach parameter in subscription file #250
Conversation
subscription_data.csv.sample got an extra parameter. We can use this extra parameter to subscribe with activationkey for example. extra,--activationkey='...' --org='...' If we do so, roles/redhat_subscription/tasks/main.yml:46 raise an error: "Error: Activation keys cannot be used with --auto-attach." Move --auto-attach in subscription file sample. Remove --force because extra param is already set This PR fixes projectatomic#249
Can one of the admins verify this patch?
|
@guillaumevincent If we remove the |
@miabbott my PR added the I just allow users to remove it if like me they want to subscribe with activation key. |
It's not visible in the pull request but extra parameters are called at the end of the command:
|
@guillaumevincent My mistake; I don't know how I got confused like that. ¯_(ツ)_/¯ I'll have the bot run tests against this PR. |
bot, add author to whitelist |
It looks like 3 builds failed because of coreos/rpm-ostree#233
|
@guillaumevincent Unfortunately, our method of testing PRs can also uncover issues on the platforms we are testing, as we are seeing here:
I'll put it on my todo list to checkout this PR locally and run some of my own tests just to be certain, but I'm very confident this PR will be merged in the next day or two. |
Thanks for the update @miabbott |
@guillaumevincent I ran this PR locally against RHEL, Fedora 26, and CentOS AH Continuous without trouble. Thanks for the patience! |
subscription_data.csv.sample got an extra parameter.
We can use this extra parameter to subscribe with activationkey for example.
If we do so, roles/redhat_subscription/tasks/main.yml:46 raise an error:
Move --auto-attach in subscription file sample.
Remove --force because extra param is already set
This PR fixes #249