Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sbyrnes committed Mar 17, 2024
1 parent f0ccd1a commit 7a2211c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

# Install Poetry to save our friends some time and confusion
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN poetry self update

# Create user account "lab" for workshop participant
RUN adduser --gecos "" clab && usermod -aG sudo clab
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ echo "clab:$LONI_LAB_PASSWORD" | chpasswd
# Enable highlighting in vim
echo "syntax on" > /home/clab/.vimrc

# Add poetry to PATH so it's a little easier
export PATH="$HOME/.local/bin:$PATH"

# Required in some environments, like ours, to make clab happy
/sbin/sysctl -w net.ipv6.conf.all.disable_ipv6=1 2>/dev/null
/sbin/sysctl -w net.ipv6.conf.default.disable_ipv6=1 2>/dev/null
Expand Down

0 comments on commit 7a2211c

Please sign in to comment.