diff options
author | Robert Speicher <robert@gitlab.com> | 2016-10-10 15:18:46 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-10-10 15:18:46 +0000 |
commit | 1659c3b8717307ebbd01fdf79fc1201dc25f25ae (patch) | |
tree | 52959d137c180d7ef018cda939bd80c9856b1c48 /doc/update/8.3-to-8.4.md | |
parent | 4ce9a783b552ebb9b667b3f7cca5230d321b04eb (diff) | |
parent | 05745737c659098d3cc1e9ae0f8eedddac7b3603 (diff) | |
download | gitlab-ce-1659c3b8717307ebbd01fdf79fc1201dc25f25ae.tar.gz |
Merge branch 'explain-0600' into 'master'
Explain the extra chmod
There is confusion about what passing `0600` to File.open does.
```
$ touch /tmp/foobar
$ ls -l /tmp/foobar
-rw-r--r-- 1 jacobvosmaer wheel 0 Sep 26 14:20 /tmp/foobar
$ ruby -e 'File.open("/tmp/foobar", "w", 0600)'
$ ls -l /tmp/foobar
-rw-r--r-- 1 jacobvosmaer wheel 0 Sep 26 14:20 /tmp/foobar
$
$
$ rm /tmp/foobar
$ ruby -e 'File.open("/tmp/foobar", "w", 0600)'
$ ls -l /tmp/foobar
-rw------- 1 jacobvosmaer wheel 0 Sep 26 14:21 /tmp/foobar
```
See merge request !6523
Diffstat (limited to 'doc/update/8.3-to-8.4.md')
0 files changed, 0 insertions, 0 deletions