mirror of https://github.com/jumpserver/jumpserver
10 lines
253 B
Bash
10 lines
253 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
|
||
|
python ../apps/manage.py shell << EOF
|
||
|
from users.models import User
|
||
|
from orgs.models import Organization
|
||
|
unorgs_users = [user for user in User.objects.all() if user.orgs.count() == 0]
|
||
|
Organization.default().members.add(*unorgs_users)
|
||
|
EOF
|