Merge branch 'master' of github.com:jowj/agares
This commit is contained in:
commit
062ecaf2c8
2
.bashrc
2
.bashrc
@ -65,7 +65,7 @@ if [ -x /usr/bin/dircolors ]; then
|
||||
fi
|
||||
|
||||
# this looks like garbage but its just color initation and termination
|
||||
export PS1="\t \e[34mǰ \e[91m☭\e[0m "
|
||||
export PS1="\t \[\e[34m\]ǰ \[\e[91m\]☭\[\e[0m\] "
|
||||
|
||||
export CLICOLOR=1
|
||||
export LSCOLORS=GxFxCxDxBxegedabagaced
|
||||
|
@ -3,8 +3,6 @@ all:
|
||||
dockerhosts:
|
||||
hosts:
|
||||
monitoring.awful.club:
|
||||
vars:
|
||||
ansible_ssh_common_args: '-o ProxyCommand="ssh -W %h:%p -q ansible@ssh.awful.club"'
|
||||
macs:
|
||||
hosts:
|
||||
hydra-ling:
|
||||
@ -13,4 +11,4 @@ all:
|
||||
lurker-ling:
|
||||
linux:
|
||||
hosts:
|
||||
ling-bane:
|
||||
ling-bane:
|
||||
|
@ -8,16 +8,18 @@
|
||||
command: hostname
|
||||
register: hostname
|
||||
- debug: msg="{{ hostname.stdout }}"
|
||||
- name: print working directory
|
||||
shell: ls -la | grep 'mojo'
|
||||
register: ls
|
||||
- debug: msg="{{ ls.stdout }}"
|
||||
- name: Pull latest version from github
|
||||
- name: Pull latest version from github, or log an error if the dir doesn't exist'
|
||||
shell: cd /home/josiah/mojojojo-bot/ && git pull
|
||||
register: result
|
||||
ignore_errors: True
|
||||
- name: If previous step failed, clone repo down
|
||||
shell: cd /home/josiah/ && git clone https://github.com/jowj/mojojojo-bot.git
|
||||
when: result is failed
|
||||
- name: Build from the latest version
|
||||
shell: cd ~/mojojojo-bot && docker build -t mojo -f docker/dockerfile .
|
||||
- name: Check if there are any existing mojo containers running and kill it
|
||||
# this has to be a shell because command: isn't interactive
|
||||
shell: docker ps | grep 'mojo' | awk '{print $1}' | xargs docker kill
|
||||
ignore_errors: True
|
||||
- name: Run the newly built docker container
|
||||
command: docker container run -e "SLACK_BOT_TOKEN={{ VAULT_SLACK_BOT_TOKEN }}" --restart "always" -d --mount source=towervol,target=/shared/ mojo
|
||||
command: docker container run -e "SLACK_BOT_TOKEN={{ VAULT_SLACK_BOT_TOKEN }}" --restart "always" -d --mount type="bind",source="/mnt/volume_sfo2_znc",target=/shared/ mojo
|
||||
|
Loading…
Reference in New Issue
Block a user