Lint fixes
This commit is contained in:
parent
65fcb4035e
commit
d4a11404fd
4 changed files with 8 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -6,5 +6,5 @@ all: syntax yaml
|
||||||
syntax:
|
syntax:
|
||||||
ansible-playbook site.yml --syntax-check -vv
|
ansible-playbook site.yml --syntax-check -vv
|
||||||
|
|
||||||
yaml:
|
yamllint:
|
||||||
find . -name \*.yml -exec yamllint {} \;
|
find . -name \*.yml -exec yamllint {} \;
|
||||||
|
|
|
@ -30,5 +30,8 @@ tls_certs: /etc/pki/tls/certs
|
||||||
tls_private: /etc/pki/tls/private
|
tls_private: /etc/pki/tls/private
|
||||||
tls_bundle: /etc/pki/tls/cert.pem
|
tls_bundle: /etc/pki/tls/cert.pem
|
||||||
|
|
||||||
|
# url where installer data is located
|
||||||
|
boot_url: http://boot.foo.sh/ks
|
||||||
|
|
||||||
# hardcode this for now
|
# hardcode this for now
|
||||||
ansible_datacenter: home
|
ansible_datacenter: home
|
||||||
|
|
|
@ -5,6 +5,7 @@ mem_size: 1536
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
||||||
# extra args for virt-install
|
# extra args for virt-install
|
||||||
|
ks_file: "{{ boot_url }}/centos7.ks"
|
||||||
virt_install_os_args: >
|
virt_install_os_args: >
|
||||||
--extra-args "ks=http://boot.foo.sh/ks/centos7.ks console=ttyS0 net.ifnames=0 ksdevice=eth0"
|
--extra-args "ks={{ ks_file }} console=ttyS0 net.ifnames=0 ksdevice=eth0"
|
||||||
--location http://centos.mirror.gnu.fi/7/os/x86_64
|
--location http://centos.mirror.gnu.fi/7/os/x86_64
|
||||||
|
|
|
@ -5,6 +5,7 @@ mem_size: 2048
|
||||||
num_cpus: 1
|
num_cpus: 1
|
||||||
|
|
||||||
# extra args for virt-install
|
# extra args for virt-install
|
||||||
|
ks_file: "{{ boot_url }}/centos8.ks"
|
||||||
virt_install_os_args: >
|
virt_install_os_args: >
|
||||||
--extra-args "ks=http://boot.foo.sh/ks/centos8.ks console=ttyS0 net.ifnames=0 ksdevice=eth0"
|
--extra-args "ks={{ ks_file }} console=ttyS0 net.ifnames=0 ksdevice=eth0"
|
||||||
--location https://nic.funet.fi/pub/mirrors/centos.org/8/BaseOS/x86_64/os
|
--location https://nic.funet.fi/pub/mirrors/centos.org/8/BaseOS/x86_64/os
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue