Use --disable= in subscription-manager to avoid shell expansion.
authorVincent S. Cojot <vincent@cojot.name>
Thu, 23 Feb 2017 14:38:24 +0000 (09:38 -0500)
committerVincent S. Cojot <vincent@cojot.name>
Wed, 1 Mar 2017 01:04:36 +0000 (20:04 -0500)
In extraconfig/pre_deploy/rhel-registration/scripts/rhel-registration,
there's a line that says:

   retry subscription-manager repos --disable '*'

I believe this is broken and will result in shell expansion being made.
The proper line should be:

   retry subscription-manager repos --disable='*'

This regression came from commit 2b06ed8adce2bcc18480b71c0f20a0ec2d21de19.
(Also see https://review.openstack.org/#/c/381233 )

This patch fixes the regression while preserving functionality
of the above change.

Closes-Bug: 1667316

Change-Id: I54f0db3f1f596f6356f7445cdc61737f20f14318
Signed-off-by: Vincent S. Cojot <vincent@cojot.name>
extraconfig/pre_deploy/rhel-registration/scripts/rhel-registration

index 2650a96..156f931 100644 (file)
@@ -133,7 +133,7 @@ case "${REG_METHOD:-}" in
         if [ -z "${REG_AUTO_ATTACH:-}" -a -z "${REG_ACTIVATION_KEY:-}" ]; then
             retry subscription-manager attach $attach_opts
         fi
-        retry subscription-manager repos --disable '*'
+        retry subscription-manager repos --disable='*'
         retry subscription-manager $repos
         ;;
     satellite)