Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
automatic_updates
Merge requests
!33
Issue
#3231996
: Ensure file system is writeable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3231996
: Ensure file system is writeable
issue/automatic_updates-3231996:3231996-ensure-file-system
into
8.x-2.x
Overview
4
Commits
12
Pipelines
0
Changes
2
Merged
Kunal Sachdev
requested to merge
issue/automatic_updates-3231996:3231996-ensure-file-system
into
8.x-2.x
3 years ago
Overview
4
Commits
12
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 10
version 21
6413398b
3 years ago
version 20
37a8e431
3 years ago
version 19
d9805e04
3 years ago
version 18
a626a341
3 years ago
version 17
85f13324
3 years ago
version 16
1f7e1365
3 years ago
version 15
4bef5424
3 years ago
version 14
4af28094
3 years ago
version 13
9e90b0ea
3 years ago
version 12
694792a0
3 years ago
version 11
20371a2a
3 years ago
version 10
0ee604da
3 years ago
version 9
52d5fa4c
3 years ago
version 8
5b18a54f
3 years ago
version 7
b3f9849b
3 years ago
version 6
4885cd90
3 years ago
version 5
cc8e9be0
3 years ago
version 4
36dc1c4a
3 years ago
version 3
6a27714e
3 years ago
version 2
16eb0ee9
3 years ago
version 1
f439151d
3 years ago
8.x-2.x (base)
and
version 11
latest version
6413398b
12 commits,
3 years ago
version 21
6413398b
12 commits,
3 years ago
version 20
37a8e431
11 commits,
3 years ago
version 19
d9805e04
10 commits,
3 years ago
version 18
a626a341
9 commits,
3 years ago
version 17
85f13324
8 commits,
3 years ago
version 16
1f7e1365
7 commits,
3 years ago
version 15
4bef5424
6 commits,
3 years ago
version 14
4af28094
5 commits,
3 years ago
version 13
9e90b0ea
4 commits,
3 years ago
version 12
694792a0
3 commits,
3 years ago
version 11
20371a2a
2 commits,
3 years ago
version 10
0ee604da
1 commit,
3 years ago
version 9
52d5fa4c
12 commits,
3 years ago
version 8
5b18a54f
11 commits,
3 years ago
version 7
b3f9849b
8 commits,
3 years ago
version 6
4885cd90
7 commits,
3 years ago
version 5
cc8e9be0
6 commits,
3 years ago
version 4
36dc1c4a
5 commits,
3 years ago
version 3
6a27714e
3 commits,
3 years ago
version 2
16eb0ee9
2 commits,
3 years ago
version 1
f439151d
1 commit,
3 years ago
Show latest version
1 file
+
5
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Validator/WritableFileSystemValidator.php
+
5
−
0
Options
@@ -35,6 +35,11 @@ class WritableFileSystemValidator implements EventSubscriberInterface {
*
* @param \Drupal\automatic_updates\Event\UpdateEvent $event
* The event object.
*
* @todo It might make sense to use a more sophisticated method of testing
* writability than is_writable(), since it's not clear if that can return
* false negatives/positives due to things like SELinux, exotic file
* systems, and so forth.
*/
public
function
checkPermissions
(
UpdateEvent
$event
):
void
{
$messages
=
[];
Loading