19 lines
338 B
Bash
Executable file
19 lines
338 B
Bash
Executable file
#!/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/*
|
|
|
|
log 'Removing downloaded packages...'
|
|
utils.lxc.attach apt-get clean
|