fix: bootstrap .bashrc and PATH on fresh PVC mount
This commit is contained in:
@@ -12,6 +12,15 @@ if [ -n "$SSH_AUTHORIZED_KEYS" ]; then
|
||||
chmod 600 /root/.ssh/authorized_keys
|
||||
fi
|
||||
|
||||
# Bootstrap home dir on fresh PVC
|
||||
if [ ! -f /root/.bashrc ]; then
|
||||
cp /etc/skel/.bashrc /root/.bashrc 2>/dev/null || cat > /root/.bashrc <<'EOF'
|
||||
export PATH="/root/.bun/bin:$PATH"
|
||||
export HISTFILE=/root/.bash_history
|
||||
export HISTSIZE=10000
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Start SSH daemon
|
||||
/usr/sbin/sshd
|
||||
|
||||
|
||||
Reference in New Issue
Block a user