Update debian10_container.sh

This commit is contained in:
tteck 2021-08-12 15:42:05 -04:00 committed by GitHub
parent 297f07f7ab
commit 05179c6668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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}"