Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Kulya
OpnSense
Commits
992f38bf
Commit
992f38bf
authored
Aug 19, 2016
by
Ad Schellevis
Committed by
Franco Fichtner
Aug 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(configd, templates) copy parents permissions, without exec bit
(cherry picked from commit
636e2cea
)
parent
8b2cf1c6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
template.py
src/opnsense/service/modules/template.py
+4
-0
No files found.
src/opnsense/service/modules/template.py
View file @
992f38bf
...
...
@@ -30,6 +30,7 @@
"""
import
os
import
os.path
import
stat
import
syslog
import
collections
import
traceback
...
...
@@ -280,6 +281,9 @@ class Template(object):
if
last_bytes_template
in
(
'
\n
'
,
'
\r
'
):
f_out
.
write
(
'
\n
'
)
f_out
.
close
()
# copy root permissions, without exec
root_perm
=
stat
.
S_IMODE
(
os
.
lstat
(
os
.
path
.
dirname
(
filename
))
.
st_mode
)
os
.
chmod
(
filename
,
root_perm
&
(
~
stat
.
S_IXGRP
&
~
stat
.
S_IXUSR
&
~
stat
.
S_IXOTH
))
result
.
append
(
filename
)
...
...
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