config is in lxd 2.0.2-0ubuntu1~16.04.1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
| 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | #!/bin/sh
set -e
. /usr/share/debconf/confmodule
maskcidr() {
   local x=${1##*255.}
   set -- 0^^^128^192^224^240^248^252^254^ $(( (${#1} - ${#x})*2 )) ${x%%.*}
   x=${1%%$3*}
   echo $(( $2 + (${#x}/4) ))
}
db_input_not_empty() {
  priority=${1}
  question=${2}
  while :; do
    db_input ${priority} ${question} || true
    db_go
    db_get ${question}
    if [ -n "${RET}" ]; then
      break
    fi
    # Make sure we ask the user for input
    priority="critical"
    db_input critical lxd/bridge-empty-error || true
  done
}
random_ipv4() {
  while :; do
    SUBNET="10.$(shuf -i 1-255 -n 1).$(shuf -i 0-255 -n 1)"
    # Check if well known
    if [ "${SUBNET}" = "10.10.10" ]; then
      continue
    fi
    # Check if used locally
    if ip -4 route show | grep -q ${SUBNET}; then
      continue
    fi
    # Attempt to see if used behind the gateway
    if ping -n -q ${SUBNET}.1 -c 1 -W 1 >/dev/null 2>&1; then
      continue
    fi
    if ping -n -q ${SUBNET}.254 -c 1 -W 1 >/dev/null 2>&1; then
      continue
    fi
    break
  done
  echo ${SUBNET}
}
random_ipv6() {
  while :; do
    SUBNET="fd$(printf "%x" $(shuf -i 0-255 -n 1)):$(printf "%x" $(shuf -i 0-65535 -n 1)):$(printf "%x" $(shuf -i 0-65535 -n 1)):$(printf "%x" $(shuf -i 0-65535 -n 1))"
    # Check if used locally
    if ip -6 route show | grep -q ${SUBNET}; then
      continue
    fi
    # Attempt to see if used behind the gateway
    if ping6 -n -q ${SUBNET}::1 -c 1 -W 1 >/dev/null 2>&1; then
      continue
    fi
    break
  done
  echo ${SUBNET}
}
# Attempt to read existing configuration into debconf
if [ -e /etc/default/lxd-bridge ]; then
    . /etc/default/lxd-bridge
    db_set lxd/setup-bridge ${USE_LXD_BRIDGE:-false}
    db_set lxd/update-profile ${UPDATE_PROFILE:-true}
    db_set lxd/bridge-name ${LXD_BRIDGE}
    if [ -n "${LXD_IPV4_ADDR}" ]; then
        db_set lxd/bridge-ipv4 true
    else
        db_set lxd/bridge-ipv4 false
    fi
    db_set lxd/bridge-ipv4-address ${LXD_IPV4_ADDR}
    CIDR=$(maskcidr ${LXD_IPV4_NETMASK})
    if [ "${CIDR}" = "0" ]; then
        db_set lxd/bridge-ipv4-netmask ""
    else
        db_set lxd/bridge-ipv4-netmask ${CIDR}
    fi
    db_set lxd/bridge-ipv4-dhcp-first $(echo ${LXD_IPV4_DHCP_RANGE} | cut -d, -f1)
    db_set lxd/bridge-ipv4-dhcp-last $(echo ${LXD_IPV4_DHCP_RANGE} | cut -d, -f2)
    db_set lxd/bridge-ipv4-dhcp-leases ${LXD_IPV4_DHCP_MAX}
    db_set lxd/bridge-ipv4-nat ${LXD_IPV4_NAT}
    if [ -n "${LXD_IPV6_ADDR}" ]; then
        db_set lxd/bridge-ipv6 true
    else
        db_set lxd/bridge-ipv6 false
    fi
    db_set lxd/bridge-ipv6-address ${LXD_IPV6_ADDR}
    db_set lxd/bridge-ipv6-netmask ${LXD_IPV6_MASK}
    db_set lxd/bridge-ipv6-nat ${LXD_IPV6_NAT}
    db_set lxd/bridge-dnsmasq ${LXD_CONFILE}
    db_set lxd/bridge-domain ${LXD_DOMAIN}
    db_set lxd/bridge-http-proxy ${LXD_IPV6_PROXY}
fi
# Ask questions
db_get lxd/setup-bridge
WAS_CONFIGURED="${RET}"
SEEN=false
if db_input medium lxd/setup-bridge; then
    SEEN=true
fi
db_go
db_get lxd/setup-bridge
if [ "${RET}" = "true" ]; then
    # Enable IPv4 and IPv6 on first manual run unless previously disabled
    if [ "${SEEN}" = "true" ]; then
        db_fget lxd/bridge-ipv4 seen
        if [ "${RET}" = "false" ]; then
            db_set lxd/bridge-ipv4 true
        fi
        db_fget lxd/bridge-ipv6 seen
        if [ "${RET}" = "false" ]; then
            db_set lxd/bridge-ipv6 true
        fi
    fi
    HAS_SUBNET=false
    db_input_not_empty medium lxd/bridge-name || true
    db_input medium lxd/bridge-ipv4 || true
    db_go
    db_get lxd/bridge-ipv4
    if [ "${RET}" = "true" ]; then
        # Pre-seed example values if none already set
        db_go
        db_get lxd/bridge-ipv4-address
        if [ -z "${RET}" ]; then
            db_input medium lxd/bridge-random-warning || true
            SUBNET=$(random_ipv4)
            db_set lxd/bridge-ipv4-address "${SUBNET}.1"
            db_set lxd/bridge-ipv4-netmask "24"
            db_set lxd/bridge-ipv4-dhcp-first "${SUBNET}.2"
            db_set lxd/bridge-ipv4-dhcp-last "${SUBNET}.254"
            db_set lxd/bridge-ipv4-dhcp-leases "252"
            db_set lxd/bridge-ipv4-nat true
        fi
        db_input_not_empty medium lxd/bridge-ipv4-address || true
        db_input_not_empty medium lxd/bridge-ipv4-netmask || true
        db_input_not_empty medium lxd/bridge-ipv4-dhcp-first || true
        db_input_not_empty medium lxd/bridge-ipv4-dhcp-last || true
        db_input_not_empty medium lxd/bridge-ipv4-dhcp-leases || true
        db_input medium lxd/bridge-ipv4-nat || true
        HAS_SUBNET=true
    else
        db_set lxd/bridge-ipv4-address ""
        db_set lxd/bridge-ipv4-netmask ""
        db_set lxd/bridge-ipv4-dhcp-first ""
        db_set lxd/bridge-ipv4-dhcp-last ""
        db_set lxd/bridge-ipv4-dhcp-leases ""
        db_set lxd/bridge-ipv4-nat true
    fi
    db_input medium lxd/bridge-ipv6 || true
    db_go
    db_get lxd/bridge-ipv6
    if [ "${RET}" = "true" ]; then
        # Pre-seed example values if none already set
        db_go
        db_get lxd/bridge-ipv6-address
        if [ -z "${RET}" ]; then
            db_input medium lxd/bridge-random-warning || true
            SUBNET=$(random_ipv6)
            db_set lxd/bridge-ipv6-address "${SUBNET}::1"
            db_set lxd/bridge-ipv6-netmask "64"
            db_set lxd/bridge-ipv6-nat true
        fi
        db_input_not_empty medium lxd/bridge-ipv6-address || true
        db_input_not_empty medium lxd/bridge-ipv6-netmask || true
        db_input medium lxd/bridge-ipv6-nat || true
        HAS_SUBNET=true
    else
        db_set lxd/bridge-ipv6-address ""
        db_set lxd/bridge-ipv6-netmask ""
        db_set lxd/bridge-ipv6-nat false
    fi
    db_input low lxd/bridge-dnsmasq || true
    db_input low lxd/bridge-domain || true
    if [ "${HAS_SUBNET}" = "true" ]; then
        db_set lxd/bridge-http-proxy false
    else
        db_set lxd/bridge-http-proxy true
    fi
    db_input low lxd/bridge-http-proxy || true
    db_input low lxd/update-profile || true
else
    db_input medium lxd/use-existing-bridge || true
    db_go
    db_get lxd/use-existing-bridge
    if [ "${RET}" = "true" ]; then
        if [ "${WAS_CONFIGURED}" = "true" ]; then
            db_set lxd/bridge-name ""
        fi
        db_input_not_empty medium lxd/bridge-name || true
        db_input low lxd/update-profile || true
    else
        db_set lxd/bridge-name ""
    fi
fi
db_go
 |