10 lines
213 B
Bash
10 lines
213 B
Bash
#!/bin/sh
|
|
# Setup basic programs
|
|
sh /setup_programs.sh
|
|
|
|
# Setup environment
|
|
apt install -y git python3 python3-pip
|
|
|
|
# Create user
|
|
useradd --system --shell /bin/bash --create-home --home-dir /opt/nautobot nautobot
|