mirror_lxc/hooks/clonehostname
Stéphane Graber 007642c891
hooks: Add SPDX headers
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
2024-04-02 17:59:17 -04:00

19 lines
417 B
Bash
Executable File

#!/bin/sh
#
# SPDX-License-Identifier: GPL-2.0-only
#
# Update the hostname in the cloned container's scripts
# Note that /etc/hostname is updated by lxc itself
for file in \
$LXC_ROOTFS_MOUNT/etc/sysconfig/network \
$LXC_ROOTFS_MOUNT/etc/sysconfig/network-scripts/ifcfg-* \
$LXC_ROOTFS_MOUNT/etc/hosts ;
do
if [ -f $file ]; then
sed -i "s|$LXC_SRC_NAME|$LXC_NAME|" $file
fi
done
exit 0