Init ansible setup

This commit is contained in:
Jake Howard 2018-09-09 08:56:05 +01:00
parent 14089eacaa
commit 18df0273d4
Signed by: jake
GPG Key ID: 57AFB45680EDD477
5 changed files with 11 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.csync_*
.owncloudsync.log
config/jetbrains-settings.jar
*.retry

View File

@ -10,3 +10,6 @@ ansible = "*"
[requires]
python_version = "3.7"
[scripts]
deploy = "bash ./deploy.sh"

View File

@ -2,11 +2,4 @@
set -e
puppet apply manifests/pre-packages.pp --modulepath=modules/ --verbose
patch /usr/bin/makepkg -N < makepkg.patch
puppet apply manifests/packages.pp --verbose
patch /usr/bin/makepkg -NR < makepkg.patch
puppet apply manifests/main.pp --modulepath=modules/ --verbose
puppet apply manifests/devices.pp --modulepath=modules/ --verbose
ansible-playbook -i hosts dotfiles.yml

4
dotfiles.yml Normal file
View File

@ -0,0 +1,4 @@
- hosts: local
connection: local
tasks:
- ping:

2
hosts Normal file
View File

@ -0,0 +1,2 @@
[local]
127.0.0.1