Gentoo Archives: gentoo-commits

From: Magnus Granberg <zorry@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/
Date: Mon, 30 Apr 2012 14:15:42
Message-Id: 1335795302.9b87e9886f4236b9c9a618233d119089c1d3581e.zorry@gentoo
1 commit: 9b87e9886f4236b9c9a618233d119089c1d3581e
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 30 14:15:02 2012 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 30 14:15:02 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=9b87e988
7
8 fix var/lib/gobs to var/cache/gobs
9
10 ---
11 gobs/pym/check_setup.py | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/gobs/pym/check_setup.py b/gobs/pym/check_setup.py
15 index ebc58f0..8f8aa87 100644
16 --- a/gobs/pym/check_setup.py
17 +++ b/gobs/pym/check_setup.py
18 @@ -17,7 +17,7 @@ if CM.getName()=='pgsql':
19 from gobs.pgsql import *
20
21 def git_pull():
22 - repo = Repo("/var/lib/gobs/" + gobs_settings_dict['gobs_gitreponame'] + "/")
23 + repo = Repo("/var/cache/gobs/" + gobs_settings_dict['gobs_gitreponame'] + "/")
24 repo_remote = repo.remotes.origin
25 repo_remote.pull()
26 master = repo.head.reference
27 @@ -33,7 +33,7 @@ def check_make_conf():
28 for config_id in config_list_all:
29 attDict={}
30 # Set the config dir
31 - check_config_dir = "/var/lib/gobs/" + gobs_settings_dict['gobs_gitreponame'] + "/" + config_id[0] + "/"
32 + check_config_dir = "/var/cache/gobs/" + gobs_settings_dict['gobs_gitreponame'] + "/" + config_id[0] + "/"
33 make_conf_file = check_config_dir + "etc/portage/make.conf"
34 # Check if we can open the file and close it
35 # Check if we have some error in the file (portage.util.getconfig)