Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sympl
Sympl
Commits
a7901054
Commit
a7901054
authored
Apr 20, 2020
by
Paul Cammish
Browse files
Merge branch 'stretch-testing' into 'stretch'
stretch-testing -> stretch See merge request
!181
parents
d5dc7810
8897d9a3
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
a7901054
CHANGELOG
---------
2020-04-20
sympl-core
* Prevent sympl-filesystem-security from changing permissions of /etc/firewall/local.d/ contents.
2020-04-18
sympl-mail
* Fixed sympl-mail-dovecot-sni issue with filesystem loops (#281)
...
...
core/debian/changelog
View file @
a7901054
sympl-core (9.0.200420.0) stable; urgency=medium
* Prevent sympl-filesystem-security from changing permissions of /etc/firewall/local.d/ contents.
-- Paul Cammish <sympl@kelduum.net> Mon, 20 Apr 2020 15:15:06 +0100
sympl-core (9.0.200415.0) stable; urgency=medium
* Added --verbose switch to sympl-filesystem-security
...
...
core/sbin/sympl-filesystem-security
View file @
a7901054
...
...
@@ -140,9 +140,9 @@ fi
if
[
-d
/etc/sympl
]
;
then
find
"/etc/sympl"
!
-type
l
!
-path
'*/test.d/*'
\(
!
-user
sympl
-o
!
-group
sympl
\)
$VERBOSE
-exec
echo chown
sympl:sympl
{}
\;
find
"/etc/sympl"
!
-type
l
!
-path
'*/test.d/*'
!
-path
'*/firewall/local.d/*'
\(
!
-user
sympl
-o
!
-group
sympl
\)
$VERBOSE
-exec
echo chown
sympl:sympl
{}
\;
find
"/etc/sympl"
!
-type
l
!
-path
'*/test.d/*'
\(
-type
f
!
-perm
664
$VERBOSE
-exec
chmod
664
{}
\;
-o
-type
d
!
-perm
775
$VERBOSE
-exec
chmod
775
{}
\;
\)
find
"/etc/sympl"
!
-type
l
!
-path
'*/test.d/*'
!
-path
'*/firewall/local.d/*'
\(
-type
f
!
-perm
664
$VERBOSE
-exec
chmod
664
{}
\;
-o
-type
d
!
-perm
775
$VERBOSE
-exec
chmod
775
{}
\;
\)
fi
...
...
Write
Preview
Supports
Markdown
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