diff --git a/ec2.yml b/ec2.yml index cf47a54..d17aa4d 100644 --- a/ec2.yml +++ b/ec2.yml @@ -71,7 +71,7 @@ redirect_webroot: "/var/www/redirect" - role: gitweb vars: - gitweb_repo: "https://gitlab.com/rehashedsalt/www" + gitweb_repo: "https://git.9iron.club/salt/www" gitweb_url: "www.9iron.club" gitweb_webroot: "/var/www/www" - role: dokuwiki diff --git a/roles/ansiblehost/tasks/main.yml b/roles/ansiblehost/tasks/main.yml index 9c85267..426fd36 100644 --- a/roles/ansiblehost/tasks/main.yml +++ b/roles/ansiblehost/tasks/main.yml @@ -10,7 +10,7 @@ mode: "0600" - name: Create system copy of Ansible repo git: - repo: "https://gitlab.com/rehashedsalt/ansible" + repo: "https://git.9iron.club/salt/ansible" dest: /opt/ansible-repo update: yes - name: Set up pull and run cronjob diff --git a/roles/user/tasks/main.yml b/roles/user/tasks/main.yml index 035ca10..6f0da51 100644 --- a/roles/user/tasks/main.yml +++ b/roles/user/tasks/main.yml @@ -50,10 +50,15 @@ name: url."https://gitlab.com/".insteadOf value: "git@gitlab.com:" scope: global + - name: Configure git SSH substitute for 9iron + git_config: + name: url."https://git.9iron.club/".insteadOf + value: "git@git.9iron.club:" + scope: global - name: Clone bootstrap script git: accept_hostkey: yes - repo: git@gitlab.com:rehashedsalt/bootstrap + repo: git@git.9iron.club:salt/bootstrap dest: $HOME/bootstrap depth: 1 force: yes