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
Timothy Frew
Sympl
Commits
512e8b35
Commit
512e8b35
authored
Apr 20, 2020
by
Paul Cammish
Browse files
Revert "Merge branch 'issue290_buster' into 'buster'"
This reverts merge request
!178
parent
d558bbd9
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
512e8b35
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 @
512e8b35
sympl-core (10.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 (10.0.200415.0) stable; urgency=medium
* Added --verbose switch to sympl-filesystem-security
...
...
core/sbin/sympl-filesystem-security
View file @
512e8b35
...
...
@@ -140,9 +140,9 @@ fi
if
[
-d
/etc/sympl
]
;
then
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/*'
\(
!
-user
sympl
-o
!
-group
sympl
\)
$VERBOSE
-exec
echo chown
sympl:sympl
{}
\;
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
{}
\;
\)
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
{}
\;
\)
fi
...
...
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