From 05179c66680f5145abad45e079f414f8e0c0c09d Mon Sep 17 00:00:00 2001 From: tteck Date: Thu, 12 Aug 2021 15:42:05 -0400 Subject: [PATCH] Update debian10_container.sh --- debian10_container.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debian10_container.sh b/debian10_container.sh index 647d51d6..8925c6c6 100644 --- a/debian10_container.sh +++ b/debian10_container.sh @@ -151,9 +151,9 @@ pct unmount $CTID && unset MOUNT # Setup container msg "Starting LXC container..." pct start $CTID -pct push $CTID setup.sh /setup.sh -perms 755 -pct exec $CTID /setup.sh +pct push $CTID debian10_setup.sh /debian10_setup.sh -perms 755 +pct exec $CTID /debian10_setup.sh # Get network details and show completion message IP=$(pct exec $CTID ip a s dev eth0 | sed -n '/inet / s/\// /p' | awk '{print $2}') -info "Successfully created a LXC Container to $CTID at IP Address ${IP}" +info "Successfully created a Debian 10 LXC Container to $CTID at IP Address ${IP}"