Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
b03a7e8a
Commit
b03a7e8a
authored
Apr 23, 2020
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
collect: fix reading collect config
eval is not needed here
parent
20277085
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
slapos/collect/entity.py
slapos/collect/entity.py
+2
-2
No files found.
slapos/collect/entity.py
View file @
b03a7e8a
...
@@ -42,10 +42,10 @@ def get_user_list(config):
...
@@ -42,10 +42,10 @@ def get_user_list(config):
if
config
.
has_section
(
'collect'
):
if
config
.
has_section
(
'collect'
):
collect_section
=
dict
(
config
.
items
(
"collect"
))
collect_section
=
dict
(
config
.
items
(
"collect"
))
disk_snapshot_params
=
dict
(
disk_snapshot_params
=
dict
(
enable
=
eval
(
collect_section
.
get
(
"report_disk_usage"
,
"False"
)
),
enable
=
collect_section
.
get
(
"report_disk_usage"
,
"False"
).
lower
()
in
(
'true'
,
'on'
,
'1'
),
pid_folder
=
collect_section
.
get
(
"disk_snapshot_process_pid_foder"
,
None
),
pid_folder
=
collect_section
.
get
(
"disk_snapshot_process_pid_foder"
,
None
),
time_cycle
=
int
(
collect_section
.
get
(
"disk_snapshot_time_cycle"
,
86400
)),
time_cycle
=
int
(
collect_section
.
get
(
"disk_snapshot_time_cycle"
,
86400
)),
use_quota
=
eval
(
collect_section
.
get
(
"disk_snapshot_use_quota"
,
"True"
))
use_quota
=
collect_section
.
get
(
"disk_snapshot_use_quota"
,
"True"
).
lower
()
in
(
'true'
,
'on'
,
'1'
),
)
)
user_dict
=
{
name
:
User
(
name
,
path
,
disk_snapshot_params
)
user_dict
=
{
name
:
User
(
name
,
path
,
disk_snapshot_params
)
for
name
,
path
in
[
for
name
,
path
in
[
...
...
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