Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/system.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-17 19:37:44 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-17 19:37:44 (GMT)
commit827ba3c74eaabb1749e2af4a59fbc6c07c978fe7 (patch)
treecbb0b28cbc0fe5086711a1d1c43271e13b26f719 /devbot/system.py
parentb56fa4bf10f98c73aa5a78ba9a707ebcebb5a3b1 (diff)
Move ubuntu tweaks out of devbot
Diffstat (limited to 'devbot/system.py')
-rw-r--r--devbot/system.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/devbot/system.py b/devbot/system.py
index 633b36b..cff7432 100644
--- a/devbot/system.py
+++ b/devbot/system.py
@@ -120,27 +120,6 @@ def stop_xvfb(xvfb_proc, orig_display):
xvfb_proc.terminate()
-def apply_ubuntu_tweaks():
- # FIXME we don't want the package to depend on external scripts
- devbot_dir = os.path.abspath(os.path.dirname(__file__))
- scripts_dir = os.path.join(os.path.dirname(devbot_dir), "scripts")
-
- wrapper_config = open("/etc/X11/Xwrapper.config").read()
- if "allowed_users=anybody" not in wrapper_config:
- if "SUGAR_BUILDBOT" in os.environ:
- print "\nPlease allow anybody to run the X server with \n" \
- " sudo dpkg-reconfigure x11-common"
- else:
- print "\nWe are going to allow anybody to run the X server"
- ubuntu_tweaks = os.path.join(config.commands_dir,
- "helpers",
- "ubuntu-tweaks")
- command.run_with_sudo([ubuntu_tweaks])
-
-def apply_distro_tweaks(distro_name):
- if distro_name == "ubuntu":
- apply_ubuntu_tweaks()
-
def warn_if_unsupported(distro_name):
if distro_name == "unsupported":
print "*********************************************************\n" \
@@ -195,7 +174,6 @@ def check(remove=False, update=False, test=False):
run_checks(package_manager, config.load_checks(), packages)
warn_if_unsupported(distro_name)
- apply_distro_tweaks(distro_name)
stop_xvfb(xvfb_proc, orig_display)