diff options
author | anatoly techtonik <techtonik@gmail.com> | 2014-03-05 02:27:35 (GMT) |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2014-03-05 02:27:35 (GMT) |
commit | d2b747cb8a4338e9d14bcaf9d3778737e5741d1a (patch) | |
tree | 0e1277a2b5a288ddc1c666531d1c756325c6e5df /testing | |
parent | 77d48a533dc194436935aaf0d673bef40983b919 (diff) | |
download | SCons-d2b747cb8a4338e9d14bcaf9d3778737e5741d1a.zip SCons-d2b747cb8a4338e9d14bcaf9d3778737e5741d1a.tar.gz SCons-d2b747cb8a4338e9d14bcaf9d3778737e5741d1a.tar.bz2 |
buildbot.yml: Set .hgrc owner as botuser
Diffstat (limited to 'testing')
-rw-r--r-- | testing/buildbot.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testing/buildbot.yml b/testing/buildbot.yml index 8590215..9ae341a 100644 --- a/testing/buildbot.yml +++ b/testing/buildbot.yml @@ -1,5 +1,10 @@ # Ansible playbook to setup buildbot instance # http://scons.org/wiki/InstallingBuildbotSlaves +# +# Send questions to: +# +# anatoly techtonik <techtonik@gmail.com> +# --- # host is overridable with --extra-vars 'host=address' - hosts: "{{ host | default('localhost') }}" @@ -13,7 +18,7 @@ apt: pkg=mercurial - name: create .hgrc if necessary - command: touch {{ hgrc }} creates={{ hgrc }} + file: path={{ hgrc }} owner={{ botuser }} state=touch - name: enable mercurial purge extension ini_file: dest={{ hgrc }} backup=yes section=extensions option=hgext.purge |