19 lines
290 B
Bash
19 lines
290 B
Bash
#!/bin/bash
|
|
# vi: set tabstop=2 shiftwidth=2 noexpandtab :
|
|
DD_DEBUG=${DEBUG:-0}
|
|
|
|
SSH_TARGET=dedic2
|
|
|
|
ANSIBLE_TARGET_HOST=dedic2
|
|
ANSIBLE_PLAYBOOK=DevDi9.playbook.yml
|
|
|
|
ANSIBLE_PARTS=(
|
|
system
|
|
postgres
|
|
gitea
|
|
)
|
|
ANSIBLE_PARTS_RESTORE=(gitea)
|
|
|
|
ANSIBLE_BECOME=0
|
|
ANSIBLE_BECOME_USER=root
|