| 1 | ## Dit is een NanoBSD configuratie-template voor WirelessLeiden.
|
|---|
| 2 | ## Instellingen weergegeven binnen dit bestand gelden als
|
|---|
| 3 | ## standaard binnen de organisatie.
|
|---|
| 4 |
|
|---|
| 5 | # Little hack to allow proper secify of KERNL/PKG location
|
|---|
| 6 | if [ -n "$NANO_CFG_FILE" ]; then
|
|---|
| 7 | NANO_CONF_DIR=$(cd $(dirname $NANO_CFG_FILE); pwd -P)
|
|---|
| 8 | else
|
|---|
| 9 | NANO_CONF_DIR=$(cd $(dirname $2); pwd -P)
|
|---|
| 10 | fi
|
|---|
| 11 |
|
|---|
| 12 | # object naam in /usr/obj/nanobsd.{obj}
|
|---|
| 13 | NANO_NAME=wleiden-hybrid
|
|---|
| 14 | NANO_SRC=/usr/src # nanobsd source tree
|
|---|
| 15 | NANO_TOOLS=$(pwd)
|
|---|
| 16 | NANO_KERNEL=$NANO_CONF_DIR/kernel.wleiden # naam van het kernel configuratiebestand
|
|---|
| 17 | NANO_IMAGES=2 # aantal nanobsd code slices/installs (1/2)
|
|---|
| 18 |
|
|---|
| 19 | NANO_CONFSIZE=20480 # Volume van de config slice (10MB) in 512bs
|
|---|
| 20 | NANO_DATASIZE=0 # volume van de data slice, 0 = not configured
|
|---|
| 21 | NANO_CODESIZE=819200 # Let buildscript the operating system slice as large as posible
|
|---|
| 22 |
|
|---|
| 23 | # Size of the /etc ramdisk in 512 bytes sectors
|
|---|
| 24 | NANO_RAM_ETCSIZE=20480
|
|---|
| 25 |
|
|---|
| 26 | NANO_RAM_TMPVARSIZE=102400 # Volume of combined var & tmp slice (50MB) in 512bs
|
|---|
| 27 |
|
|---|
| 28 | NANO_LABEL=WLIMG
|
|---|
| 29 | NANO_NEWFS="-b 4096 -f 512 -i 8192" # Overwrite the default stettings to disable Soft-updates
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 | # Package building done using pourdriere
|
|---|
| 33 | NANO_PACKAGE_REPOS="/usr/local/poudriere/data/packages/wlpkgbuild-default-node/"
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 | # Dirty quirk to allow comments in part below
|
|---|
| 37 | PACKAGE_LIST=`cat <<EOF | sed -e 's/#.*$//g' | xargs
|
|---|
| 38 | benchmarks/iperf
|
|---|
| 39 | editors/vim-console
|
|---|
| 40 | dns/dnsmasq
|
|---|
| 41 | dns/nsd
|
|---|
| 42 | dns/unbound
|
|---|
| 43 | ftp/curl
|
|---|
| 44 | net/ladvd
|
|---|
| 45 | net-mgmt/iftop
|
|---|
| 46 | net-mgmt/net-snmp
|
|---|
| 47 | net/mtr
|
|---|
| 48 | net/isc-dhcp44-server
|
|---|
| 49 | net/pen
|
|---|
| 50 | ports-mgmt/pkg
|
|---|
| 51 | security/sudo
|
|---|
| 52 | security/ca_root_nss
|
|---|
| 53 | shells/bash-static
|
|---|
| 54 | sysutils/daemontools
|
|---|
| 55 | sysutils/monit
|
|---|
| 56 | sysutils/screen
|
|---|
| 57 | sysutils/ucspi-tcp
|
|---|
| 58 | sysutils/wait_on
|
|---|
| 59 | www/apache24
|
|---|
| 60 | www/tinyproxy
|
|---|
| 61 | www/thttpd
|
|---|
| 62 |
|
|---|
| 63 | # Extra WL ports
|
|---|
| 64 | net/lvrouted
|
|---|
| 65 | `
|
|---|
| 66 | PKG_MAKE_CONF="
|
|---|
| 67 | # www/py-cherrypy - include apache templating
|
|---|
| 68 | # net-mgmt/net-snmp - no perl please (size)
|
|---|
| 69 | # net-mgmt/nagios-plugins - no threading (single CPU)
|
|---|
| 70 | # shells/bash-static - logging via syslog
|
|---|
| 71 | # net/mtr - no X11 (no screen)
|
|---|
| 72 | # lang/ocaml - no TK support (requires X11)
|
|---|
| 73 | # devel/ocaml-findlib - no TOOLBOX support (requires ocaml with TK support)
|
|---|
| 74 | # ftp/curl - GSSAPI support set to NONE (_BASE requires kerberos)
|
|---|
| 75 | OPTIONS_SET= APACHE FPING SYSLOG GSSAPI_NONE
|
|---|
| 76 | OPTIONS_UNSET= PERL PERL_EMBEDDED PYTHON X11 TK TOOLBOX GSSAPI_BASE
|
|---|
| 77 | "
|
|---|
| 78 |
|
|---|
| 79 | ##NANO_PACKAGE_LIST=
|
|---|
| 80 |
|
|---|
| 81 | # Warning: set to 1 to debug make build errors
|
|---|
| 82 | # Number of recurrent parrallel make builds
|
|---|
| 83 | if `grep -q 'acpi0: <PRLS PRLS_OEM> on motherboard' /var/run/dmesg.boot`; then
|
|---|
| 84 | # Mac OS X Parallels virtual machine
|
|---|
| 85 | NANO_PMAKE="make -B"
|
|---|
| 86 | else
|
|---|
| 87 | # Default 2 times number of CPU's inside machine
|
|---|
| 88 | NANO_PARALLEL_MAKE=`expr $(sysctl -n hw.ncpu) \* 2`
|
|---|
| 89 | NANO_PMAKE="make -j ${NANO_PARALLEL_MAKE}"
|
|---|
| 90 | fi
|
|---|
| 91 |
|
|---|
| 92 | # Starting from soekris bios version 1.31 upwards boot0sio does not seems work
|
|---|
| 93 | # anymore, but boot0 does (weird)
|
|---|
| 94 | NANO_BOOTLOADER="boot/boot0"
|
|---|
| 95 |
|
|---|
| 96 | # Strip down to a more acceptable size
|
|---|
| 97 | # hints from http://people.freebsd.org/~phk/nanobsd/soekris_4x26/make.soekris_4x26.conf (46MB)
|
|---|
| 98 | NANO_PRUNE="$NANO_PRUNE usr/share/examples"
|
|---|
| 99 | NANO_PRUNE="$NANO_PRUNE usr/share/syscons"
|
|---|
| 100 | NANO_PRUNE="$NANO_PRUNE usr/share/calendar"
|
|---|
| 101 | # NB! usr/share/misc contains termcap, vi(1) etc fails to work without it.
|
|---|
| 102 | # NANOBSD_PRUNE += usr/share/misc
|
|---|
| 103 | NANO_PRUNE="$NANO_PRUNE usr/share/pcvt"
|
|---|
| 104 | NANO_PRUNE="$NANO_PRUNE usr/share/me"
|
|---|
| 105 | NANO_PRUNE="$NANO_PRUNE usr/share/doc"
|
|---|
| 106 | # Debugging removal
|
|---|
| 107 | NANO_PRUNE="$NANO_PRUNE usr/lib/debug"
|
|---|
| 108 | NANO_PRUNE="$NANO_PRUNE usr/tests"
|
|---|
| 109 | # Installed ports strip down
|
|---|
| 110 | NANO_PRUNE="$NANO_PRUNE usr/local/share/doc"
|
|---|
| 111 | NANO_PRUNE="$NANO_PRUNE usr/local/share/examples"
|
|---|
| 112 |
|
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
|
|---|
| 116 |
|
|---|
| 117 | # Opties parsed gedurende build & install world
|
|---|
| 118 | # Also check man 5 src.conf for details
|
|---|
| 119 | # Some flags are misleading, e.g. could only be installworld (e.g.), for details:
|
|---|
| 120 | # http://phk.freebsd.dk/misc/build_options/
|
|---|
| 121 | # For details on make options also check:
|
|---|
| 122 | # /usr/src/share/mk/bsd.own.mk
|
|---|
| 123 | CONF_COMMON='
|
|---|
| 124 | # Specific enabled options
|
|---|
| 125 | #WITHOUT_ACPI=YES # geen advanced configuration power interface
|
|---|
| 126 | #WITHOUT_BIND=YES # geen bind tools, dns/named geinstalleerd
|
|---|
| 127 | #WITHOUT_CXX=YES # Set to not build g++(1) and related libraries.
|
|---|
| 128 | #WITHOUT_GROFF=YES # Set to not build groff(1).
|
|---|
| 129 | #WITHOUT_INET6=YES # geen ondersteuning inet versie 6 architectuur
|
|---|
| 130 | #WITHOUT_INFO=YES # geen info bestanden, readable online docs
|
|---|
| 131 | #WITHOUT_IPFILTER=YES # geen ip filtering geinstalleerd
|
|---|
| 132 | #WITHOUT_KLDLOAD=YES # do not allow loading of kernel modules
|
|---|
| 133 | #WITHOUT_MAILWRAPPER=YES # geen mailwrapper bij gebruik sendmail
|
|---|
| 134 | #WITHOUT_MAN=YES # geen handleidingen gecompileerd
|
|---|
| 135 | #WITHOUT_MISC=YES # geen misc sub directory
|
|---|
| 136 | #WITHOUT_MODULES=YES # geen ondersteuning toevoegen modules
|
|---|
| 137 | #WITHOUT_PAM=YES # geen ondersteuning pa modules
|
|---|
| 138 | #WITHOUT_PF=YES # geen packet filtering geinstalleerd
|
|---|
| 139 | #WITHOUT_SHARE=YES # geen share sub directory
|
|---|
| 140 | #WITHOUT_USB=YES # geen ondersteuning usb modules
|
|---|
| 141 | # Specific disabled options
|
|---|
| 142 | WITHOUT_ATM=YES # geen ondersteuning Asynchronous Transfer Mode
|
|---|
| 143 | WITHOUT_AUDIT=YES # geen event auditing / audit trails
|
|---|
| 144 | WITHOUT_AUTHPF=YES # geen authenticating gateway user shell
|
|---|
| 145 | WITHOUT_BLUETOOTH=YES # geen ondersteuning Bluetooth modules
|
|---|
| 146 | WITHOUT_CALENDAR=YES # geen calendar reminder service gecompileerd
|
|---|
| 147 | WITHOUT_CDDL=YES # Set to not build code licensed under Sun CDDL. (also ZFS)
|
|---|
| 148 | WITHOUT_CPP=YES # Set to not build cpp(1).
|
|---|
| 149 | WITHOUT_CXX=YES # Set to not build c++(1) and related libraries.
|
|---|
| 150 | WITHOUT_CLANG=YES # Set to not build the Clang C/C++ compiler.
|
|---|
| 151 | WITHOUT_CVS=YES # geen cvs tools geinstalleerd
|
|---|
| 152 | WITHOUT_DICT=YES # geen dictionary ondersteuning
|
|---|
| 153 | WITHOUT_EXAMPLES=YES # geen voorbeeld configuratiebestanden
|
|---|
| 154 | WITHOUT_FORTRAN=YES # geen ondersteuning fortran compilers
|
|---|
| 155 | WITHOUT_GAMES=YES # geen games gecompileerd
|
|---|
| 156 | WITHOUT_GCOV=YES # geen gcov test coverage program
|
|---|
| 157 | WITHOUT_GPIB=YES # geen ondersteuning gpib kaarten
|
|---|
| 158 | WITHOUT_HTML=YES # geen html help bestanden gecompileerd
|
|---|
| 159 | WITHOUT_I4B=YES # geen ondersteuning voor isdn
|
|---|
| 160 | WITHOUT_IPX=YES # geen ondersteuning ipx protocols
|
|---|
| 161 | WITHOUT_KERBEROS=YES # geen ondersteuning Kerberos authenticatie
|
|---|
| 162 | WITHOUT_LOCALES=YES # geen ondersteuning lokalisatie
|
|---|
| 163 | WITHOUT_LPR=YES # geen ondersteuning print services
|
|---|
| 164 | WITHOUT_NIS=YES # geen ondersteuning network information system
|
|---|
| 165 | WITHOUT_PROFILE=YES # Set to avoid compiling profiled libraries.
|
|---|
| 166 | WITHOUT_RCMDS=YES # geen ondersteuning rcmds,
|
|---|
| 167 | WITHOUT_RESCUE=YES # geen rescue bestanden gecompileerd
|
|---|
| 168 | WITHOUT_SENDMAIL=YES # geen sendmail geinstalleerd
|
|---|
| 169 | WITHOUT_SHAREDOCS=YES # geen share/docs directories
|
|---|
| 170 | WITHOUT_SSP=YES # Set to not build world with propolice stack smashing protection.
|
|---|
| 171 | WITHOUT_SYSCONS=YES # geen syscon devices gecompileerd
|
|---|
| 172 | WITHOUT_UNBOUND=YES # Port version will be used if any is used
|
|---|
| 173 | WITHOUT_LOCALES=YES # No localization support
|
|---|
| 174 |
|
|---|
| 175 | # LLVM Target selection to speed up compilation
|
|---|
| 176 | WITHOUT_LLVM_TARGET_AARCH64=YES
|
|---|
| 177 | WITHOUT_LLVM_TARGET_ARM=YES
|
|---|
| 178 | WITHOUT_LLVM_TARGET_MIPS=YES
|
|---|
| 179 | WITHOUT_LLVM_TARGET_POWERPC=YES
|
|---|
| 180 | WITHOUT_LLVM_TARGET_SPARC=YES
|
|---|
| 181 | WITH_LLVM_TARGET_X86=YES
|
|---|
| 182 | '
|
|---|
| 183 |
|
|---|
| 184 | CONF_BUILD="
|
|---|
| 185 | ${CONF_COMMON}
|
|---|
| 186 | "
|
|---|
| 187 |
|
|---|
| 188 | CONF_INSTALL="
|
|---|
| 189 | ${CONF_COMMON}
|
|---|
| 190 | WITHOUT_TOOLCHAIN=YES # geen freebsd toolchain
|
|---|
| 191 | "
|
|---|
| 192 |
|
|---|
| 193 |
|
|---|
| 194 | # Flash disks arrived, sandisk 1g seems to match the geometry of the (blanc) cards
|
|---|
| 195 | #FlashDevice sandisk 1g # nanobsd flashdevice entry
|
|---|
| 196 | #FlashDevice sandisk 512mb # nanobsd flashdevice entry
|
|---|
| 197 | #FlashDevice transcend 2g # nanobsd flashdevice entry
|
|---|
| 198 | # Calculated value of PEAK hardware 1GB CF card
|
|---|
| 199 | # C/H/S phys 1954/16/63, logical 977/32/63
|
|---|
| 200 | # Mediasize is calculated as C*H*S*512
|
|---|
| 201 |
|
|---|
| 202 | # Using logical values reported by ALIX board
|
|---|
| 203 | # values for PCEngines blanc 1 GB cards
|
|---|
| 204 | # C/H/S phys 1966/16/63, logical 983/32/63
|
|---|
| 205 | NANO_MEDIASIZE=`expr 1008451584 / 512`
|
|---|
| 206 | NANO_HEADS=32
|
|---|
| 207 | NANO_SECTS=63
|
|---|
| 208 |
|
|---|
| 209 |
|
|---|
| 210 | # Version tagging
|
|---|
| 211 | cust_version_tag() (
|
|---|
| 212 | VERSION_FILE="${NANO_WORLDDIR}/tools/wl-release.txt"
|
|---|
| 213 | (
|
|---|
| 214 | echo "Generated by `id -un`@`hostname -f` at `date`"
|
|---|
| 215 | echo ""
|
|---|
| 216 | echo "=== CONFIG specifics ==="
|
|---|
| 217 | svn info ${NANO_CONF_DIR}/../ || exit 0
|
|---|
| 218 | svn diff ${NANO_CONF_DIR}/../ || exit 0
|
|---|
| 219 | echo "=== BEGIN CONFIG specifics ==="
|
|---|
| 220 | ) > $VERSION_FILE
|
|---|
| 221 | )
|
|---|
| 222 |
|
|---|
| 223 | # Takes a very long time (10+) minutes to generate this file on an ALIX board,
|
|---|
| 224 | # not practical for quick debugging and configuration.
|
|---|
| 225 | cust_openvpn_dhparam() (
|
|---|
| 226 | if [ -r ${NANO_CONF_DIR}/usr/local/bin/openvpn ]; then
|
|---|
| 227 | DHFILE=${NANO_WORLDDIR}/etc/easy-rsa-keys/dh1024.pem
|
|---|
| 228 | mkdir -p `dirname $DHFILE`
|
|---|
| 229 | openssl dhparam -out $DHFILE 1024
|
|---|
| 230 | fi
|
|---|
| 231 | )
|
|---|
| 232 |
|
|---|
| 233 | # Unbound is running in alternative chroot location (port default) how-ever
|
|---|
| 234 | # this directory needs to be writeable by unbound for key generation etc.
|
|---|
| 235 | cust_unbound_rights() (
|
|---|
| 236 | if [ -r ${NANO_WORLDDIR}/usr/local/etc/unbound ]; then
|
|---|
| 237 | chroot ${NANO_WORLDDIR} sh -c "chown unbound:unbound /usr/local/etc/unbound"
|
|---|
| 238 | fi
|
|---|
| 239 | )
|
|---|
| 240 |
|
|---|
| 241 |
|
|---|
| 242 | # Monit permissions needs to be more restrictive which cannot be set by
|
|---|
| 243 | # repository tooling
|
|---|
| 244 | cust_monitrc_permissions () (
|
|---|
| 245 | if [ -r ${NANO_WORLDDIR}/usr/local/etc/monitrc ]; then
|
|---|
| 246 | chroot ${NANO_WORLDDIR} sh -c "chmod 0600 /usr/local/etc/monitrc"
|
|---|
| 247 | fi
|
|---|
| 248 | )
|
|---|
| 249 |
|
|---|
| 250 |
|
|---|
| 251 | # Assuming we are running a safe envirionment where snooping could occur during or after the build
|
|---|
| 252 | cust_set_root_password() (
|
|---|
| 253 | if [ -n "${CFG_ROOT_PASSWORD}" ]; then
|
|---|
| 254 | pprint 2 "Set root password using CFG_ROOT_PASSWORD variable"
|
|---|
| 255 | chroot ${NANO_WORLDDIR} sh -c "echo '${CFG_ROOT_PASSWORD}' | pw usermod -h 0 -n root"
|
|---|
| 256 | else
|
|---|
| 257 | pprint 2 "Root password is <blank>, no password provided at variable CFG_ROOT_PASSWORD"
|
|---|
| 258 | fi
|
|---|
| 259 | )
|
|---|
| 260 |
|
|---|
| 261 |
|
|---|
| 262 |
|
|---|
| 263 | # EXPERIMENTAL patch like envirionment
|
|---|
| 264 | # Using '*-nanobsd.patch' files to only specify the bare differences between the base/default file to
|
|---|
| 265 | # keep us as close as possible to the base OS
|
|---|
| 266 | # Patches are applied to the directory they live in
|
|---|
| 267 | #cust_apply_nanobsd_patches() (
|
|---|
| 268 | # for PATCHFILE in `find ${NANO_WORLDDIR} -regex '.*-nanobsd\.patch$'`; do
|
|---|
| 269 | # cd `dirname ${PATCHFILE}`
|
|---|
| 270 | # patch -t -N -p0 -i `basename ${PATCHFILE}`
|
|---|
| 271 | # #XX: What to with installed patch files? Delete them for the time beeing
|
|---|
| 272 | # rm -v ${PATCHFILE}
|
|---|
| 273 | #done
|
|---|
| 274 |
|
|---|
| 275 |
|
|---|
| 276 |
|
|---|
| 277 | #)
|
|---|
| 278 |
|
|---|
| 279 |
|
|---|
| 280 |
|
|---|
| 281 | # Customize ntpd
|
|---|
| 282 | cust_ntpd() (
|
|---|
| 283 | chroot ${NANO_WORLDDIR} sh -c "ln -fs /usr/local/etc/ntp.drift /var/db/ntp.drift"
|
|---|
| 284 | )
|
|---|
| 285 |
|
|---|
| 286 |
|
|---|
| 287 | # Enable Serial TTYs
|
|---|
| 288 | cust_serial_ttys() (
|
|---|
| 289 | chroot ${NANO_WORLDDIR} sed -i '' -e '/ttyv[0-9]/s/on /off/' -e '/ttyu0/s/off/on/' -e '/ttyu0/s/dialup/ansi/' /etc/ttys
|
|---|
| 290 |
|
|---|
| 291 | # Serial login is consided to be phycically secured, so no credentials are required
|
|---|
| 292 | chroot ${NANO_WORLDDIR} sed -i '' -e '/ttyu0/s/std.9600/al.9600/' /etc/ttys
|
|---|
| 293 | )
|
|---|
| 294 |
|
|---|
| 295 | # Customize sudoers files
|
|---|
| 296 | cust_sudo_rules() {
|
|---|
| 297 | chroot ${NANO_WORLDDIR} find /usr/local/etc/sudoers.d/ -type f -exec chmod 0640 {} \+
|
|---|
| 298 | }
|
|---|
| 299 |
|
|---|
| 300 |
|
|---|
| 301 | # Update databases of tooling like locate and apropos
|
|---|
| 302 | cust_update_databases() {
|
|---|
| 303 | chroot ${NANO_WORLDDIR} sh -c '/usr/libexec/makewhatis.local `/usr/bin/manpath -q`'
|
|---|
| 304 | chroot ${NANO_WORLDDIR} "/usr/libexec/locate.updatedb"
|
|---|
| 305 | }
|
|---|
| 306 |
|
|---|
| 307 | # Install files from specific relative location
|
|---|
| 308 | cust_install_files () (
|
|---|
| 309 | cd ${NANO_CONF_DIR}/../files
|
|---|
| 310 | find . -print | grep -v -e /CVS -e .svn | cpio -dumpv ${NANO_WORLDDIR}
|
|---|
| 311 | )
|
|---|
| 312 |
|
|---|
| 313 |
|
|---|
| 314 | # Make tools available for root by default
|
|---|
| 315 | cust_root_bin_to_tools() {
|
|---|
| 316 | ln -s /tools ${NANO_WORLDDIR}/root/bin
|
|---|
| 317 | }
|
|---|
| 318 |
|
|---|
| 319 |
|
|---|
| 320 | # Prune no needed directories of image
|
|---|
| 321 | cust_nano_prune () (
|
|---|
| 322 | cd ${NANO_WORLDDIR}
|
|---|
| 323 | for ENTRY in ${NANO_PRUNE}; do
|
|---|
| 324 | rm -vfR ${ENTRY}
|
|---|
| 325 | done
|
|---|
| 326 | )
|
|---|
| 327 |
|
|---|
| 328 | # We actually do need an seperate /tmp, so undo the symlinking done in
|
|---|
| 329 | # setup_nanobsd()
|
|---|
| 330 | late_cust_unset_common_var_and_tmp() (
|
|---|
| 331 | cd ${NANO_WORLDDIR}
|
|---|
| 332 | rm tmp
|
|---|
| 333 | mkdir -m 1777 tmp
|
|---|
| 334 | )
|
|---|
| 335 |
|
|---|
| 336 |
|
|---|
| 337 | # Fill /cfg wmth custom files, based on 'create_i386_diskimage ( )'
|
|---|
| 338 | last_nano_fill_cfg () (
|
|---|
| 339 | # Variables to be used
|
|---|
| 340 | IMG=${NANO_DISKIMGDIR}/${NANO_IMGNAME}
|
|---|
| 341 | MNT=${MAKEOBJDIRPREFIX}/_.mnt
|
|---|
| 342 |
|
|---|
| 343 | # Mount '/cfg' slize in image
|
|---|
| 344 | MD=`mdconfig -a -t vnode -f ${IMG}`
|
|---|
| 345 | mount /dev/${MD}s3 ${MNT}
|
|---|
| 346 |
|
|---|
| 347 | # Location of '/cfg' directory
|
|---|
| 348 | cd ${NANO_CONF_DIR}/../cfg-files
|
|---|
| 349 | find . -print | grep -v -e /CVS -e .svn | cpio -dumpv ${MNT}
|
|---|
| 350 |
|
|---|
| 351 |
|
|---|
| 352 | # Leave in nice end state
|
|---|
| 353 | umount ${MNT}
|
|---|
| 354 | mdconfig -d -u ${MD}
|
|---|
| 355 | ) > ${MAKEOBJDIRPREFIX}/_.fc 2>&1
|
|---|
| 356 |
|
|---|
| 357 | last_nano_disk_usage () (
|
|---|
| 358 | # Variables to be used
|
|---|
| 359 | IMG=${NANO_DISKIMGDIR}/${NANO_IMGNAME}
|
|---|
| 360 | MNT=${MAKEOBJDIRPREFIX}/_.mnt
|
|---|
| 361 |
|
|---|
| 362 | # Mount root slize
|
|---|
| 363 | MD=`mdconfig -a -t vnode -f ${IMG}`
|
|---|
| 364 | mount /dev/${MD}s1a ${MNT}
|
|---|
| 365 |
|
|---|
| 366 | # Show disk usage (percent free) inc header
|
|---|
| 367 | pprint 2 $(df -h | head -1)
|
|---|
| 368 | pprint 2 "$(df -h | grep /dev/${MD})"
|
|---|
| 369 |
|
|---|
| 370 | # Leave in nice end state
|
|---|
| 371 | umount ${MNT}
|
|---|
| 372 | mdconfig -d -u ${MD}
|
|---|
| 373 | )
|
|---|
| 374 |
|
|---|
| 375 |
|
|---|
| 376 | cust_pkgng () (
|
|---|
| 377 |
|
|---|
| 378 | # If the package directory doesn't exist, we're done.
|
|---|
| 379 | if [ ! -d ${NANO_PACKAGE_REPOS} ]; then
|
|---|
| 380 | echo "DONE 0 packages"
|
|---|
| 381 | return 0
|
|---|
| 382 | fi
|
|---|
| 383 |
|
|---|
| 384 | # Find a pkg-* package
|
|---|
| 385 | if [ -z "${NANO_PACKAGE_REPOS}/Latest/pkg.txz" ]; then
|
|---|
| 386 | echo "FAILED: need a pkg/ package for bootstrapping"
|
|---|
| 387 | exit 2
|
|---|
| 388 | fi
|
|---|
| 389 |
|
|---|
| 390 | # Replicate the packages into the NanoBSD world (as hard links) so we can
|
|---|
| 391 | # access them from the chroot in which pkg is being run.
|
|---|
| 392 | cp -lpR ${NANO_PACKAGE_REPOS} ${NANO_WORLDDIR}/Repos
|
|---|
| 393 |
|
|---|
| 394 | #Bootstrap pkg
|
|---|
| 395 | CR env ASSUME_ALWAYS_YES=YES SIGNATURE_TYPE=none /usr/sbin/pkg add /Repos/Latest/pkg.txz
|
|---|
| 396 | CR pkg -N >/dev/null 2>&1
|
|---|
| 397 | if [ "$?" -ne "0" ]; then
|
|---|
| 398 | echo "FAILED: pkg bootstrapping faied"
|
|---|
| 399 | exit 2
|
|---|
| 400 | fi
|
|---|
| 401 |
|
|---|
| 402 | mkdir -p ${NANO_WORLDDIR}/usr/local/etc/pkg/repos
|
|---|
| 403 | echo "FreeBSD: { enabled: no }" > ${NANO_WORLDDIR}/usr/local/etc/pkg/repos/FreeBSD.conf
|
|---|
| 404 |
|
|---|
| 405 | # Generate a reference to our local repository
|
|---|
| 406 | cat > ${NANO_WORLDDIR}/usr/local/etc/pkg/repos/LOCAL.conf <<-EOF
|
|---|
| 407 | LOCAL: {
|
|---|
| 408 | url : file:///Repos
|
|---|
| 409 | enabled : yes
|
|---|
| 410 | mirror_type : none
|
|---|
| 411 | signature_type : none
|
|---|
| 412 | }
|
|---|
| 413 | EOF
|
|---|
| 414 |
|
|---|
| 415 |
|
|---|
| 416 | # Count & report how many we have to install
|
|---|
| 417 | todo=`echo ${PACKAGE_LIST} | /usr/bin/wc -l`
|
|---|
| 418 | todo=$(expr $todo + 1) # add one for pkg since it is installed already
|
|---|
| 419 | echo "=== TODO: $todo"
|
|---|
| 420 | echo "${PACKAGE_LIST}"
|
|---|
| 421 | echo "==="
|
|---|
| 422 | for PKG in ${PACKAGE_LIST}
|
|---|
| 423 | do
|
|---|
| 424 | CR env ASSUME_ALWAYS_YES=YES /usr/sbin/pkg install $PKG
|
|---|
| 425 | done
|
|---|
| 426 | rm -rf ${NANO_WORLDDIR}/Repos
|
|---|
| 427 | )
|
|---|
| 428 |
|
|---|
| 429 | last_orders () (
|
|---|
| 430 | last_nano_fill_cfg
|
|---|
| 431 | last_nano_disk_usage
|
|---|
| 432 | )
|
|---|
| 433 |
|
|---|
| 434 | # Ugly hack to 'escaping' pprint from inside a customize_cmd to output
|
|---|
| 435 | # instead of a file
|
|---|
| 436 | exec 3>/dev/stdout
|
|---|
| 437 | # Progress Print
|
|---|
| 438 | # Print $2 at level $1
|
|---|
| 439 | pprint() {
|
|---|
| 440 | if [ "$1" -le $PPLEVEL ]; then
|
|---|
| 441 | printf "%.${1}s %s\n" "#####" "$2" 1>&3
|
|---|
| 442 | fi
|
|---|
| 443 | }
|
|---|
| 444 |
|
|---|
| 445 | # Cust macro`s gestart in onderstaande volgorde
|
|---|
| 446 | # XXX: Determine size before installing all find of additions to see how much
|
|---|
| 447 | # base we are actually using ## du -h -d 0
|
|---|
| 448 | customize_cmd cust_pkgng
|
|---|
| 449 | customize_cmd cust_install_files
|
|---|
| 450 | customize_cmd cust_ntpd
|
|---|
| 451 | customize_cmd cust_serial_ttys
|
|---|
| 452 | customize_cmd cust_version_tag
|
|---|
| 453 | customize_cmd cust_root_bin_to_tools
|
|---|
| 454 | customize_cmd cust_allow_ssh_root
|
|---|
| 455 | customize_cmd cust_openvpn_dhparam
|
|---|
| 456 | customize_cmd cust_nano_prune
|
|---|
| 457 | customize_cmd cust_set_root_password
|
|---|
| 458 | customize_cmd cust_sudo_rules
|
|---|
| 459 | customize_cmd cust_unbound_rights
|
|---|
| 460 | customize_cmd cust_update_databases
|
|---|
| 461 | customize_cmd cust_monitrc_permissions
|
|---|
| 462 | #customize_cmd cust_apply_nanobsd_patches
|
|---|
| 463 | late_customize_cmd late_cust_unset_common_var_and_tmp
|
|---|
| 464 |
|
|---|
| 465 | # Standard overwrite
|
|---|
| 466 | if [ -r "$NANO_CONF_DIR/nanobsd.local" ]; then
|
|---|
| 467 | . $NANO_CONF_DIR/nanobsd.local
|
|---|
| 468 | fi
|
|---|
| 469 |
|
|---|
| 470 | # Extra config if existing is not suffient
|
|---|
| 471 | if [ -n "$EXTRA_NANOBSD_CONFIG" ]; then
|
|---|
| 472 | for FILE in $EXTRA_NANOBSD_CONFIG; do
|
|---|
| 473 | # File relative to config directory
|
|---|
| 474 | if [ "`echo $FILE | cut -c1`" != "/" ]; then
|
|---|
| 475 | FILE=$NANO_CONF_DIR/$FILE
|
|---|
| 476 | fi
|
|---|
| 477 | pprint 1 "Loading $FILE"
|
|---|
| 478 | . $FILE || exit 1
|
|---|
| 479 | done
|
|---|
| 480 | fi
|
|---|