Skip to content

Commit

Permalink
install.py: fix the 'is team device' check
Browse files Browse the repository at this point in the history
It's a method, not an attribute. We were only checking if the
method existed. This caused teamd to always be pulled in.

(cherry picked from commit 348b2be)
  • Loading branch information
AdamWill authored and bcl committed Feb 25, 2015
1 parent a2e93bf commit ea37961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyanaconda/install.py
Expand Up @@ -216,7 +216,7 @@ def doInstall(storage, payload, ksdata, instClass):
if willInstallBootloader:
packages += storage.bootloader.packages

if network.is_using_team_device:
if network.is_using_team_device():
packages.append("teamd")

# don't try to install packages from the install class' ignored list and the
Expand Down

0 comments on commit ea37961

Please sign in to comment.