mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 03:21:12 +00:00
10 lines
163 B
Bash
10 lines
163 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
python ../apps/manage.py shell << EOF
|
|
from assets.models import Asset
|
|
|
|
Asset.objects.filter(platform__startswith='Win').update(protocol='rdp')
|
|
|
|
EOF
|