refactor(kickstart): do not create a /home partition

https://github.com/khuedoan/homelab/issues/40
This commit is contained in:
Khue Doan 2022-02-13 08:37:02 +07:00
parent 4ac77de79e
commit 01712883fa

View File

@ -12,7 +12,7 @@ lang en_US.UTF-8
clearpart --all --drives={{ hostvars[item]['disk'] }} clearpart --all --drives={{ hostvars[item]['disk'] }}
# Partitioning # Partitioning
ignoredisk --only-use={{ hostvars[item]['disk'] }} ignoredisk --only-use={{ hostvars[item]['disk'] }}
autopart autopart --nohome
# Network information # Network information
network --bootproto=static --device={{ hostvars[item]['network_interface'] }} --ip={{ hostvars[item]['ansible_host'] }} --gateway={{ ansible_default_ipv4.gateway }} --nameserver={{ dns_server }} --netmask={{ ansible_default_ipv4.netmask }} --ipv6=auto --hostname={{ hostvars[item]['inventory_hostname'] }} --activate network --bootproto=static --device={{ hostvars[item]['network_interface'] }} --ip={{ hostvars[item]['ansible_host'] }} --gateway={{ ansible_default_ipv4.gateway }} --nameserver={{ dns_server }} --netmask={{ ansible_default_ipv4.netmask }} --ipv6=auto --hostname={{ hostvars[item]['inventory_hostname'] }} --activate