Compare commits

...

2 Commits

Author SHA1 Message Date
MickLesk cec11908eb Sync-in: create admin user with admin role instead of default user 2026-07-23 17:41:31 +02:00
community-scripts-pr-app[bot] bcbc819252 Update CHANGELOG.md (#15980)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-23 08:59:25 +00:00
2 changed files with 16 additions and 1 deletions
+8
View File
@@ -505,6 +505,14 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-07-23
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- update authentik to 2026.5.6 [@thieneret](https://github.com/thieneret) ([#15973](https://github.com/community-scripts/ProxmoxVE/pull/15973))
## 2026-07-22
### 🆕 New Scripts
+8 -1
View File
@@ -51,7 +51,14 @@ msg_ok "Ran Database Migrations"
msg_info "Creating Admin User"
cd /opt/sync-in
$STD npx sync-in-server create-user
ADMIN_PASS=$(openssl rand -base64 18)
$STD npx sync-in-server create-user --role admin --login admin --password "${ADMIN_PASS}"
{
echo "Sync-in Credentials"
echo "===================="
echo "Login: admin"
echo "Password: ${ADMIN_PASS}"
} >~/sync-in.creds
msg_ok "Created Admin User"
VERSION=$(node -pe "require('/opt/sync-in/node_modules/@sync-in/server/package.json').version" 2>/dev/null || echo "")