Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
<%#
kind: provision
name: FreeBSD (mfsBSD) provision
oses:
- FreeBSD 10.0
%>
<%
proxy_string = @host.params['http-proxy'] ? "http://#{@host.params['http-proxy']}:#{@host.params['http-proxy-port']}" : ''
%>
export http_proxy='<%= proxy_string %>'
# Get the disk layout, and the first disk connected to the system
disk_layout=`/sbin/sysctl -n kern.disks | /usr/bin/sed 's/cd[0-9]//g'`
first_disk="`echo ${disk_layout##*[1-9]} | /usr/bin/cut -d' ' -f1`"
test -z "$first_disk" || echo "First disk: $first_disk"

/root/bin/destroygeom -d <%= @host.params['install-disk'] || '$first_disk' %> || exit 1
/root/bin/zfsinstall -d <%= @host.params['install-disk'] || '$first_disk' %> -s 2G -u <%= @mediapath %> || exit 1

cp /etc/resolv.conf /mnt/etc/resolv.conf
mount -t devfs devfs /mnt/dev
fetch -q --no-verify-hostname --no-verify-peer -o /mnt/tmp/finish.sh -d <%= foreman_url('finish') %>
chroot /mnt /bin/sh /tmp/finish.sh
rm /mnt/tmp/finish.sh

fetch -q --no-verify-hostname --no-verify-peer -o /dev/null -d <%= foreman_url %>
sleep 5
reboot
(4-4/4)