diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-06-30 13:19:58 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-06-30 13:19:58 +0000 |
commit | a14319c56fb4f09a1256d26653738d3ead7404eb (patch) | |
tree | b6025bd8a3f9c3b49315ac867b673251854a434b | |
parent | 6e969a709c40e8c78e4961e7ea7e9f045cfb6d92 (diff) | |
download | portage-a14319c56fb4f09a1256d26653738d3ead7404eb.tar.gz portage-a14319c56fb4f09a1256d26653738d3ead7404eb.tar.bz2 portage-a14319c56fb4f09a1256d26653738d3ead7404eb.zip |
Remove old wheel group warnings since portage stopped using this group long ago.
svn path=/main/trunk/; revision=7099
-rw-r--r-- | pym/emerge/__init__.py | 4 | ||||
-rw-r--r-- | pym/portage/data.py | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index de37af141..a8b7da19f 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -5790,10 +5790,6 @@ def emerge_main(): emerge.help.help(myaction, myopts, portage.output.havecolor) sys.exit(0) - if portage.wheelgid == portage.portage_gid: - print "emerge: wheel group use is being deprecated. Please update group and passwd to" - print " include the portage user as noted above, and then use group portage." - if "--debug" in myopts: print "myaction", myaction print "myopts", myopts diff --git a/pym/portage/data.py b/pym/portage/data.py index a51990303..d327af726 100644 --- a/pym/portage/data.py +++ b/pym/portage/data.py @@ -78,10 +78,6 @@ if uid==0: try: wheelgid=grp.getgrnam("wheel")[2] except KeyError: - writemsg("portage initialization: your system doesn't have a 'wheel' group.\n") - writemsg("Please fix this as it is a normal system requirement. 'wheel' is GID 10\n") - writemsg("`emerge baselayout` and a config update with dispatch-conf, etc-update\n") - writemsg("or cfg-update should remedy this problem.\n") pass #Discover the uid and gid of the portage user/group |