#!/bin/bash

LXC_NET_UPSTART=/usr/share/eole/lxc/lxc-net.conf

if [ -f "${LXC_NET_UPSTART}" ]
then
    cp -f "${LXC_NET_UPSTART}" /etc/init/lxc-net.conf
    initctl reload-configuration
fi
