From 827ba3c74eaabb1749e2af4a59fbc6c07c978fe7 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Sat, 17 Nov 2012 19:37:44 +0000 Subject: Move ubuntu tweaks out of devbot --- (limited to 'commands') diff --git a/commands/check-system b/commands/check-system index ac0b9d3..0b77180 100755 --- a/commands/check-system +++ b/commands/check-system @@ -17,4 +17,16 @@ parser.add_argument("--test", action="store_true", help="don't add or remove packages, test only") args = parser.parse_args() +def apply_ubuntu_tweaks(): + wrapper_config = open("/etc/X11/Xwrapper.config").read() + if "allowed_users=anybody" not in wrapper_config: + 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]) + +apply_ubuntu_tweaks() + system.check(update=args.update, remove=args.remove, test=args.test) -- cgit v0.9.1