17 lines
268 B
Bash
17 lines
268 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
source common/ui.sh
|
||
|
source common/utils.sh
|
||
|
|
||
|
debug 'Bringing container up'
|
||
|
utils.lxc.start
|
||
|
|
||
|
info "Cleaning up '${CONTAINER}'..."
|
||
|
|
||
|
log 'Removing temporary files...'
|
||
|
rm -rf ${ROOTFS}/tmp/*
|
||
|
|
||
|
log 'cleaning up dhcp leases'
|
||
|
rm -f ${ROOTFS}/var/lib/dhcp/*
|