mirror of https://github.com/archzfs/archzfs
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.
20 lines
587 B
20 lines
587 B
#!/bin/bash
|
|
|
|
export test_root_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
debug "test_root_dir='${test_root_dir}'"
|
|
|
|
export test_target_dir='/mnt'
|
|
|
|
export test_archzfs_repo_name="archzfs-testing"
|
|
|
|
# Additional packages to install in the archiso
|
|
export test_archiso_packages="archzfs-linux-lts"
|
|
|
|
# Additional packages to install after base and base-devel
|
|
export test_chroot_packages="$(<packages) archzfs-linux"
|
|
|
|
export fqdn='test.archzfs.test'
|
|
export keymap='us'
|
|
export language='en_US.UTF-8'
|
|
export password=$(/usr/bin/openssl passwd -crypt 'azfstest')
|
|
export timezone='UTC'
|
|
|