You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
473 B
17 lines
473 B
#!/bin/sh
|
|
set -e
|
|
|
|
OEM_DIR=/var/lib/pureos-oem/
|
|
|
|
mkdir -p $OEM_DIR
|
|
cd $OEM_DIR
|
|
|
|
apt install -y ca-certificates
|
|
|
|
# d-i components
|
|
wget http://repo.pureos.net/pureos/dists/green/main/installer-amd64/current/images/hd-media/gtk/initrd.gz
|
|
wget http://repo.pureos.net/pureos/dists/green/main/installer-amd64/current/images/hd-media/gtk/vmlinuz
|
|
|
|
# PureOS image
|
|
wget --progress=dot:giga -O pureos.iso https://downloads.puri.sm/snapshots/2017-07-24/pureos-8.0-live-amd64.hybrid.iso
|