2009-08-07 16:03:11 -04:00
|
|
|
|
2009-08-28 13:27:15 -04:00
|
|
|
import hacks_ubuntu
|
2009-09-03 14:30:39 -04:00
|
|
|
import os;
|
2009-08-28 13:27:15 -04:00
|
|
|
|
|
|
|
|
def findHacks( un ):
|
2009-09-03 14:40:08 -04:00
|
|
|
if un[0] == 'Linux' and ( os.path.exists( "/etc/debian_version" ) or un[3].find( "Ubuntu" ) >= 0 ):
|
2009-08-28 13:27:15 -04:00
|
|
|
return hacks_ubuntu
|
|
|
|
|
return None
|