Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
985bd6fc
Unverified
Commit
985bd6fc
authored
Dec 17, 2018
by
老广
Committed by
GitHub
Dec 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix2 (#2183)
* [Bugfix] 修复错误 * [Bugfix] 修复一些bug
parent
374039d2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
15 deletions
+22
-15
tasks.py
apps/assets/tasks.py
+11
-10
models.py
apps/common/models.py
+2
-0
serializers.py
apps/ops/serializers.py
+1
-1
api_urls.py
apps/ops/urls/api_urls.py
+1
-0
adhoc.py
apps/ops/views/adhoc.py
+5
-2
jms
jms
+2
-2
No files found.
apps/assets/tasks.py
View file @
985bd6fc
...
...
@@ -141,11 +141,11 @@ def update_assets_hardware_info_period():
logger
.
debug
(
"Period task disabled, update assets hardware info pass"
)
return
from
ops.utils
import
update_or_create_ansible_task
from
orgs.models
import
Organization
orgs
=
Organization
.
objects
.
all
()
.
values_list
(
'id'
,
flat
=
True
)
orgs
.
append
(
''
)
task_name
=
_
(
"Update assets hardware info period"
)
#
from ops.utils import update_or_create_ansible_task
#
from orgs.models import Organization
#
orgs = Organization.objects.all().values_list('id', flat=True)
#
orgs.append('')
#
task_name = _("Update assets hardware info period")
# for org_id in orgs:
# org_id = str(org_id)
# hostname_list = [
...
...
@@ -354,11 +354,12 @@ def test_system_user_connectability_period():
if
PERIOD_TASK
!=
"on"
:
logger
.
debug
(
"Period task disabled, test system user connectability pass"
)
return
system_users
=
SystemUser
.
objects
.
all
()
for
system_user
in
system_users
:
task_name
=
_
(
"Test system user connectability period: {}"
)
.
format
(
system_user
)
# task_name = _("定期测试系统用户可连接性: {}".format(system_user))
test_system_user_connectability_util
(
system_user
,
task_name
)
# Todo: 暂时禁用定期测试
# system_users = SystemUser.objects.all()
# for system_user in system_users:
# task_name = _("Test system user connectability period: {}").format(system_user)
# # task_name = _("定期测试系统用户可连接性: {}".format(system_user))
# test_system_user_connectability_util(system_user, task_name)
#### Push system user tasks ####
...
...
apps/common/models.py
View file @
985bd6fc
...
...
@@ -45,6 +45,8 @@ class Setting(models.Model):
def
cleaned_value
(
self
):
try
:
value
=
self
.
value
if
not
isinstance
(
value
,
(
str
,
bytes
)):
return
value
if
self
.
encrypted
:
value
=
signer
.
unsign
(
value
)
value
=
json
.
loads
(
value
)
...
...
apps/ops/serializers.py
View file @
985bd6fc
...
...
@@ -53,7 +53,7 @@ class AdHocRunHistorySerializer(serializers.ModelSerializer):
@staticmethod
def
get_stat
(
obj
):
return
{
"total"
:
len
(
obj
.
adhoc
.
hosts
),
"total"
:
obj
.
adhoc
.
hosts
.
count
(
),
"success"
:
len
(
obj
.
summary
.
get
(
"contacted"
,
[])),
"failed"
:
len
(
obj
.
summary
.
get
(
"dark"
,
[])),
}
...
...
apps/ops/urls/api_urls.py
View file @
985bd6fc
...
...
@@ -11,6 +11,7 @@ app_name = "ops"
router
=
DefaultRouter
()
router
.
register
(
r'tasks'
,
api
.
TaskViewSet
,
'task'
)
router
.
register
(
r'adhoc'
,
api
.
AdHocViewSet
,
'adhoc'
)
router
.
register
(
r'history'
,
api
.
AdHocRunHistoryViewSet
,
'history'
)
router
.
register
(
r'command-executions'
,
api
.
CommandExecutionViewSet
,
'command-execution'
)
urlpatterns
=
[
...
...
apps/ops/views/adhoc.py
View file @
985bd6fc
...
...
@@ -27,7 +27,7 @@ class TaskListView(AdminUserRequiredMixin, DatetimeSearchMixin, ListView):
def
get_queryset
(
self
):
queryset
=
super
()
.
get_queryset
()
if
current_org
.
is_real
()
:
if
current_org
:
queryset
=
queryset
.
filter
(
created_by
=
current_org
.
id
)
else
:
queryset
=
queryset
.
filter
(
created_by
=
''
)
...
...
@@ -62,8 +62,11 @@ class TaskDetailView(AdminUserRequiredMixin, DetailView):
def
get_queryset
(
self
):
queryset
=
super
()
.
get_queryset
()
if
current_org
:
# Todo: 需要整理默认组织等东西
if
current_org
.
is_real
():
queryset
=
queryset
.
filter
(
created_by
=
current_org
.
id
)
else
:
queryset
=
queryset
.
filter
(
created_by
=
''
)
return
queryset
def
get_context_data
(
self
,
**
kwargs
):
...
...
jms
View file @
985bd6fc
...
...
@@ -26,8 +26,8 @@ LOG_DIR = os.path.join(BASE_DIR, 'logs')
TMP_DIR
=
os
.
path
.
join
(
BASE_DIR
,
'tmp'
)
HTTP_HOST
=
CONFIG
.
HTTP_BIND_HOST
or
'127.0.0.1'
HTTP_PORT
=
CONFIG
.
HTTP_LISTEN_PORT
or
8080
DEBUG
=
CONFIG
.
DEBUG
LOG_LEVEL
=
CONFIG
.
LOG_LEVEL
DEBUG
=
CONFIG
.
DEBUG
or
False
LOG_LEVEL
=
CONFIG
.
LOG_LEVEL
or
'INFO'
START_TIMEOUT
=
40
WORKERS
=
4
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment