Skip to content

Commit

Permalink
Ansible and Homeassistant templates
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Feb 17, 2017
1 parent 29b53e1 commit cdeb30b
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cache
4 changes: 4 additions & 0 deletions ansible/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
config
info
logfile
rootfs
20 changes: 20 additions & 0 deletions ansible/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

BASEDIR:=$(shell dab basedir)

all: info/init_ok
dab bootstrap
dab finalize

info/init_ok: dab.conf
dab init
touch $@

.PHONY: clean
clean:
dab clean
rm -f *~

.PHONY: dist-clean
dist-clean:
dab dist-clean
rm -f *~
13 changes: 13 additions & 0 deletions ansible/dab.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Suite: xenial
CacheDir: ../cache
#Source: http://archive.ubuntu.com/ubuntu SUITE main restricted universe multiverse
#Source: http://archive.ubuntu.com/ubuntu SUITE-updates main restricted universe multiverse
#Source: http://archive.ubuntu.com/ubuntu SUITE-security main restricted universe multiverse
Architecture: amd64
Name: ansible
Version: 16.04-1
Section: system
Maintainer: Nathan Gardiner <[email protected]>
Infopage: http://pve.proxmox.com/wiki/Ubuntu_Xenial_Standard
Description: Ansible Environment
A small Ubuntu Xenial system including all standard packages.
20 changes: 20 additions & 0 deletions homeassistant/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

BASEDIR:=$(shell dab basedir)

all: info/init_ok
dab bootstrap
dab finalize

info/init_ok: dab.conf
dab init
touch $@

.PHONY: clean
clean:
dab clean
rm -f *~

.PHONY: dist-clean
dist-clean:
dab dist-clean
rm -f *~

0 comments on commit cdeb30b

Please sign in to comment.