From 933f30dbf4086f7ddfe6d74f6a068ccc3fcb484c Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 16 Dec 2019 17:15:21 +0000 Subject: [PATCH] Version my changes to default mercurial config --- tasks/dabapps.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tasks/dabapps.yml b/tasks/dabapps.yml index 9e8ffee..2196615 100644 --- a/tasks/dabapps.yml +++ b/tasks/dabapps.yml @@ -7,6 +7,7 @@ when: "item not in installed_packages.stdout_lines" loop: - 'heroku-cli' + - 'mercurial' - 'ngrok' - 'python-aws-mfa' - 'redis' @@ -35,3 +36,21 @@ owner: "{{ user }}" state: link force: true + + +- name: Enable strip mercurial extension + ini_file: + path: "{{ home }}/.hgrc" + section: "extensions" + option: strip + value: "" + mode: 0644 + + +- name: Enable strip mercurial extension + ini_file: + path: "{{ home }}/.hgrc" + section: "ui" + option: ignore + value: '{{ home }}/.config/.gitignore' + mode: 0644