Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autobot-slm-backend/ansible/playbooks/enroll-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
# Emergency admin user for fallback access when SSH keys fail
emergency_admin_user: "autobot_admin"
# Password hash must be provided via Ansible Vault or --extra-vars.
# Generate with: python3 -c "from passlib.hash import sha512_crypt; print(sha512_crypt.hash('YOUR_PASSWORD'))"
# Generate with: python3 -c "import bcrypt; print(bcrypt.hashpw(b'YOUR_PASSWORD', bcrypt.gensalt()).decode())"
# See: inventory/group_vars/vault.yml
emergency_admin_password_hash: "{{ vault_emergency_admin_password_hash | default(omit) }}"

Expand Down
6 changes: 3 additions & 3 deletions docs/DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Key packages:
- redis (5.0+)
- pydantic (2.5+)
- PyJWT[crypto]
- passlib[bcrypt]
- bcrypt (5.0+)
- python-multipart
- aiohttp

Expand Down Expand Up @@ -330,7 +330,7 @@ python3 -m playwright install webkit
redis>=5.0.0
pydantic>=2.5.0
PyJWT[crypto]>=2.8.0
passlib[bcrypt]>=1.7.4
bcrypt>=5.0.0
```

### User Backend
Expand Down Expand Up @@ -362,7 +362,7 @@ asyncpg>=0.29.0
redis>=5.0.0
pydantic>=2.5.0
PyJWT[crypto]>=2.8.0
passlib[bcrypt]>=1.7.4
bcrypt>=5.0.0
python-multipart>=0.0.6
aiohttp>=3.9.0
```
Expand Down
2 changes: 1 addition & 1 deletion docs/plans/2026-01-15-slm-startup-procedure-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Minimal set (~10 packages):
- ansible-runner
- aiofiles
- python-jose (JWT)
- passlib (passwords)
- bcrypt (passwords)
- websockets

## Startup Flow
Expand Down
Loading