Skip to content

Commit

Permalink
Genericize for future workshops
Browse files Browse the repository at this point in the history
  • Loading branch information
sbyrnes committed Jan 30, 2025
1 parent 75aa936 commit a6ee3c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN export PATH=$PATH:/sbin:/usr/sbin
# Set the user's password via environment variable. Passwords must be set
# to allow login.
# Note: These variable was pre-defined by the lab orchestrator
ENV LONI_LAB_PASSWORD=
ENV LAB_PASSWORD=

# Create an RSA key, required for SSH server.
RUN ssh-keygen -A
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Set password for the user via environment variable. This allows each
# unix container to have their own password passed in by clab, helping
# to avoid one user from accidentally signing into another's container.
echo "clab:$LONI_LAB_PASSWORD" | chpasswd
echo "clab:$LAB_PASSWORD" | chpasswd

# Enable highlighting in vim
echo "syntax on" > /home/clab/.vimrc
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tool.poetry]
name = "2024-lonisummit-workshop-automation"
name = "getting-started-workshop"
version = "0.1.0"
description = ""
authors = ["Shannon Byrnes <sbyrnes@internet2.edu>"]
readme = "README.md"
packages = [{include = "2024_lonisummit_workshop_automation"}]
packages = [{include = "getting-started-workshop"}]

[tool.poetry.dependencies]
python = "^3.9"
Expand Down

0 comments on commit a6ee3c0

Please sign in to comment.