Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gpfs-policy
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rc
gpfs-policy
Merge requests
!22
Update main to rel_v0.1.1-1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update main to rel_v0.1.1-1
rel_v0.1.1-1
into
main
Overview
0
Commits
18
Pipelines
0
Changes
3
Merged
Matthew K Defenderfer
requested to merge
rel_v0.1.1-1
into
main
6 months ago
Overview
0
Commits
18
Pipelines
0
Changes
1
Expand
Update main to current release. See
!19 (merged)
for more details
👍
0
👎
0
Merge request reports
Viewing commit
ce113376
Prev
Next
Show latest version
1 file
+
2
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ce113376
now converts the full device path to have - instead of / and prepends list-policy_
· ce113376
Matthew K Defenderfer
authored
8 months ago
src/run-policy/run-submit-pol-job.py
+
2
−
5
Options
@@ -106,11 +106,8 @@ def validate_output_directory(outdir):
return
p
def
create_default_log_prefix
(
device
):
if
device
.
match
(
'
/data/user
'
):
log_prefix
=
'
list-policy_data_user
'
else
:
log_prefix
=
f
'
list-policy_
{
device
.
stem
}
'
return
log_prefix
mod_device
=
str
(
device
).
strip
(
'
/
'
).
replace
(
'
/
'
,
'
-
'
)
return
f
"
list-policy_
{
mod_device
}
"
def
main
():
args
=
parse_args
()
Loading