I have this idea to ease administration of my lxc virtual boxes by hard linking some of the configurations files, like sshd, fail2ban etc. I am the only one with root access to the boxes!
ln -s
won't work? From the physical server:
rm /var/lib/lxc/vm0/rootfs/etc/ssh/sshd_config
rm /var/lib/lxc/vm1/rootfs/etc/ssh/sshd_config
rm /var/lib/lxc/vm2/rootfs/etc/ssh/sshd_config
rm /var/lib/lxc/vm3/rootfs/etc/ssh/sshd_config
ln -p /etc/ssh/sshd_config /var/lib/lxc/vm0/rootfs/etc/ssh/sshd_config
ln -p /etc/ssh/sshd_config /var/lib/lxc/vm1/rootfs/etc/ssh/sshd_config
ln -p /etc/ssh/sshd_config /var/lib/lxc/vm2/rootfs/etc/ssh/sshd_config
ln -p /etc/ssh/sshd_config /var/lib/lxc/vm3/rootfs/etc/ssh/sshd_config