Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-16 09:09:43 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-16 09:09:43 (GMT)
commitd50cf9e59b0c1b21995b958fbe89f3c9f1cb3c36 (patch)
treea00c8660e280838d9cd92c2885598ef01c88fd0a /devbot
parentcc034825744856b9936a518cef0215d9096a8f98 (diff)
Move ubuntu-tweaks into helpers
Diffstat (limited to 'devbot')
-rw-r--r--devbot/system.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/devbot/system.py b/devbot/system.py
index 4b2caea..633b36b 100644
--- a/devbot/system.py
+++ b/devbot/system.py
@@ -132,7 +132,9 @@ def apply_ubuntu_tweaks():
" sudo dpkg-reconfigure x11-common"
else:
print "\nWe are going to allow anybody to run the X server"
- ubuntu_tweaks = os.path.join(scripts_dir, "ubuntu-tweaks")
+ ubuntu_tweaks = os.path.join(config.commands_dir,
+ "helpers",
+ "ubuntu-tweaks")
command.run_with_sudo([ubuntu_tweaks])
def apply_distro_tweaks(distro_name):