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
e1b23a7c
Commit
e1b23a7c
authored
Dec 21, 2017
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Bugfix] 修复无法记录日志的bug
parent
76df1de6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
inventory.py
apps/ops/ansible/inventory.py
+1
-0
utils.py
apps/ops/utils.py
+1
-1
views.py
apps/perms/views.py
+0
-1
user_detail.html
apps/users/templates/users/user_detail.html
+4
-4
No files found.
apps/ops/ansible/inventory.py
View file @
e1b23a7c
...
@@ -62,6 +62,7 @@ class BaseHost(Host):
...
@@ -62,6 +62,7 @@ class BaseHost(Host):
self
.
set_variable
(
"ansible_become_pass"
,
become
.
get
(
'pass'
,
''
))
self
.
set_variable
(
"ansible_become_pass"
,
become
.
get
(
'pass'
,
''
))
else
:
else
:
self
.
set_variable
(
"ansible_become"
,
False
)
self
.
set_variable
(
"ansible_become"
,
False
)
print
(
self
.
get_vars
())
def
__set_extra_variables
(
self
):
def
__set_extra_variables
(
self
):
for
k
,
v
in
self
.
host_data
.
get
(
'vars'
,
{})
.
items
():
for
k
,
v
in
self
.
host_data
.
get
(
'vars'
,
{})
.
items
():
...
...
apps/ops/utils.py
View file @
e1b23a7c
...
@@ -58,7 +58,6 @@ def get_inventory(hostname_list, run_as_admin=False, run_as=None, become_info=No
...
@@ -58,7 +58,6 @@ def get_inventory(hostname_list, run_as_admin=False, run_as=None, become_info=No
)
)
@record_adhoc
def
get_adhoc_runner
(
hostname_list
,
run_as_admin
=
False
,
run_as
=
None
,
become_info
=
None
):
def
get_adhoc_runner
(
hostname_list
,
run_as_admin
=
False
,
run_as
=
None
,
become_info
=
None
):
inventory
=
get_inventory
(
inventory
=
get_inventory
(
hostname_list
,
run_as_admin
=
run_as_admin
,
hostname_list
,
run_as_admin
=
run_as_admin
,
...
@@ -68,6 +67,7 @@ def get_adhoc_runner(hostname_list, run_as_admin=False, run_as=None, become_info
...
@@ -68,6 +67,7 @@ def get_adhoc_runner(hostname_list, run_as_admin=False, run_as=None, become_info
return
runner
return
runner
@record_adhoc
def
run_adhoc_object
(
adhoc
,
**
options
):
def
run_adhoc_object
(
adhoc
,
**
options
):
"""
"""
:param adhoc: Instance of AdHoc
:param adhoc: Instance of AdHoc
...
...
apps/perms/views.py
View file @
e1b23a7c
...
@@ -19,7 +19,6 @@ from .forms import AssetPermissionForm
...
@@ -19,7 +19,6 @@ from .forms import AssetPermissionForm
class
AssetPermissionListView
(
AdminUserRequiredMixin
,
ListView
):
class
AssetPermissionListView
(
AdminUserRequiredMixin
,
ListView
):
model
=
AssetPermission
model
=
AssetPermission
paginate_by
=
settings
.
CONFIG
.
DISPLAY_PER_PAGE
context_object_name
=
'asset_permission_list'
context_object_name
=
'asset_permission_list'
template_name
=
'perms/asset_permission_list.html'
template_name
=
'perms/asset_permission_list.html'
...
...
apps/users/templates/users/user_detail.html
View file @
e1b23a7c
...
@@ -86,10 +86,10 @@
...
@@ -86,10 +86,10 @@
<td>
{% trans 'Role' %}:
</td>
<td>
{% trans 'Role' %}:
</td>
<td><b>
{{ user_object.get_role_display }}
</b></td>
<td><b>
{{ user_object.get_role_display }}
</b></td>
</tr>
</tr>
<tr>
{#
<tr>
#}
<td>
{% trans 'Enable OTP' %}:
</td>
{#
<td>
{% trans 'Enable OTP' %}:
</td>
#}
<td><b>
{{ user_object.enable_otp|yesno:"Yes,No,Unknown"}}
</b></td>
{#
<td><b>
{{ user_object.enable_otp|yesno:"Yes,No,Unknown"}}
</b></td>
#}
</tr>
{#
</tr>
#}
<tr>
<tr>
<td>
{% trans 'Date expired' %}:
</td>
<td>
{% trans 'Date expired' %}:
</td>
<td><b>
{{ user_object.date_expired|date:"Y-m-j H:i:s" }}
</b></td>
<td><b>
{{ user_object.date_expired|date:"Y-m-j H:i:s" }}
</b></td>
...
...
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