diff --git a/CHANGELOG.md b/CHANGELOG.md index ab20278..7b1991c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Add some backgrounds (#4). * Update Clonezilla and Gparted to their latest version. * Swap is now between 25% of the RAM and 32GB at max. +* Add a nvme0n1 disk to allow auto-partition from the preseed file for new SSD connection. #### Fixes * Use the new IP address. diff --git a/README.md b/README.md index 7ad6c31..60993b6 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Preseeding provides a way to set answers to questions asked by the Debian-Instal * Timezone : Europe/Paris * NTP server : ntp.univ-rennes1.fr * Partitionning - * Use the entire first disk (sda or vda aka virtual hdd) with LVM. + * Use the entire first disk (sda, vda aka virtual hdd or nvme0n1) with LVM. * Purge all LVM, RAID,… partitions or informations already set on the first disk. * Partitionning : diff --git a/preseed/debian/jessie/preseed.cfg b/preseed/debian/jessie/preseed.cfg index 2cf0b4a..95f7980 100644 --- a/preseed/debian/jessie/preseed.cfg +++ b/preseed/debian/jessie/preseed.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/jessie/preseed_cinnamon.cfg b/preseed/debian/jessie/preseed_cinnamon.cfg index 8614f22..e9d9a92 100644 --- a/preseed/debian/jessie/preseed_cinnamon.cfg +++ b/preseed/debian/jessie/preseed_cinnamon.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/jessie/preseed_gnome.cfg b/preseed/debian/jessie/preseed_gnome.cfg index 97628f1..cf552bf 100644 --- a/preseed/debian/jessie/preseed_gnome.cfg +++ b/preseed/debian/jessie/preseed_gnome.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/jessie/preseed_mate.cfg b/preseed/debian/jessie/preseed_mate.cfg index 22c0036..cc2de01 100644 --- a/preseed/debian/jessie/preseed_mate.cfg +++ b/preseed/debian/jessie/preseed_mate.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/stretch/preseed.cfg b/preseed/debian/stretch/preseed.cfg index a96a277..1d05096 100644 --- a/preseed/debian/stretch/preseed.cfg +++ b/preseed/debian/stretch/preseed.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/stretch/preseed_cinnamon.cfg b/preseed/debian/stretch/preseed_cinnamon.cfg index 15b8aaa..3544472 100644 --- a/preseed/debian/stretch/preseed_cinnamon.cfg +++ b/preseed/debian/stretch/preseed_cinnamon.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/stretch/preseed_gnome.cfg b/preseed/debian/stretch/preseed_gnome.cfg index 33763b6..bdf8bb5 100644 --- a/preseed/debian/stretch/preseed_gnome.cfg +++ b/preseed/debian/stretch/preseed_gnome.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/stretch/preseed_mate.cfg b/preseed/debian/stretch/preseed_mate.cfg index 38a0608..51d1b9a 100644 --- a/preseed/debian/stretch/preseed_mate.cfg +++ b/preseed/debian/stretch/preseed_mate.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/wheezy/preseed.cfg b/preseed/debian/wheezy/preseed.cfg index 2c9d60a..b2e8d17 100644 --- a/preseed/debian/wheezy/preseed.cfg +++ b/preseed/debian/wheezy/preseed.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/wheezy/preseed_cluster.cfg b/preseed/debian/wheezy/preseed_cluster.cfg index 02fe44a..6114d17 100644 --- a/preseed/debian/wheezy/preseed_cluster.cfg +++ b/preseed/debian/wheezy/preseed_cluster.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom diff --git a/preseed/debian/wheezy/preseed_gnome.cfg b/preseed/debian/wheezy/preseed_gnome.cfg index 587221d..51e6453 100644 --- a/preseed/debian/wheezy/preseed_gnome.cfg +++ b/preseed/debian/wheezy/preseed_gnome.cfg @@ -133,7 +133,7 @@ d-i clock-setup/ntp-server string ntp.univ-rennes1.fr # If the system has only one disk the installer will default to using it. # Otherwise, the device name must be given -d-i partman-auto/disk string /dev/sda /dev/vda +d-i partman-auto/disk string /dev/sda /dev/vda /dev/nvme0n1 d-i partman-auto/init_automatically_partition select custom