blob: 3ff797cdfcee107b899f48ec41b4db47c1c6babc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#! /bin/sh
#
# For Debian debootstrap tar ball
#
STRAPROOT=/data/debian9/debootstrap
ZFSDEBDIR=`readlink -f ../zfs-linux-0.7.3-debian9-amd64`
#
# For All
#
STRAPBALL=`readlink -f ../debian9-zfs-debootstrap.tar.bz2`
MYHOSTNAME="test02"
MYUSERNAME="sven"
#
# For Debian ZFS Live Installation
#
KVERSION="4.9.0-4-amd64"
LIVEROOT=/data/debian9/live_boot
LIVECHROOT=$LIVEROOT/chroot
#
# For ZFS System Installation
#
POOL=test02
DISK1=ata-VBOX_HARDDISK_VB0534c422-330be595
DISK2=ata-VBOX_HARDDISK_VB9f812506-27aeef4e
DISK3=ata-VBOX_HARDDISK_VBb4e81953-01afbdc6
MYSWAPSIZE=2G
|