#!/bin/bash
#  b9.conf - system bootstrap helper configuration

######
# Script Configuration

bootstrap_mirror="https://mirrors.$domain/ubuntu"

# Location to use for mounting the bootstrap image
#chroot_mntdir="$script_tempdir/mnt"


######
# Disk Image Configuration

# Image size (in MB)
bootstrap_fs_size=8192

# Image file system type (e.g. ext3, ext4, ....)
bootstrap_fs_type="ext4"


######
# Debootstrap Configuration

# Name of distribution release (e.g. trusty, xenial)
bootstrap_release="xenial"

# Arch can be i386, amd64, armhf, etc.  (default: dpkg --print-architecture)
#bootstrap_arch="amd64"

# Set the kind of chroot to create
bootstrap_variant="minbase"


######
# Network Configuration

# /etc/hostname
#   hostname of new host (for display... name is set by CLI)
bootstrap_hostname="$bootstrap_release"

# /etc/resolv.conf
#   domain name of new host
bootstrap_domain="$domain"

#   DNS domains
bootstrap_dns_domains=( "$bootstrap_domain" )

#   DNS servers
bootstrap_dns_servers=( "a.ns.$bootstrap_domain" "b.ns.$bootstrap_domain" )

# /etc/network/interfaces
#   list of interfaces
bootstrap_net_ifaces=()


######
# User/Group Configuration

bootstrap_admin=mcn-admin

# useradd: admin users
bootstrap_users=( $bootstrap_admin )

# useradd: user shell
bootstrap_shell=/bin/bash

# useradd: skeleton directory
bootstrap_skeldir=/etc/skel

View the Developer Guide Index

View the Reference Manual Index


Generated on Fri Jul 28 14:36:27 PDT 2017 by mcsh d14 v0.23.0.