diff options
author | Vinnie Okada <vokada@mrvinn.com> | 2015-03-28 08:38:48 -0600 |
---|---|---|
committer | Vinnie Okada <vokada@mrvinn.com> | 2015-03-28 08:38:48 -0600 |
commit | 0f78d92e4cfaf5c6674701fdf54a7188686cb8eb (patch) | |
tree | 0b312ffd742e172acf08b7509cb87536a60d4e80 /spec/tasks | |
parent | 6664da431aaa9f9a521323004420bcf700af4306 (diff) | |
download | gitlab-ce-0f78d92e4cfaf5c6674701fdf54a7188686cb8eb.tar.gz |
Don't use chmod_R for backup tars
When creating backup tar files, only change permissions on the `db`,
`uploads`, and `repositories` directories, not their contents.
Diffstat (limited to 'spec/tasks')
-rw-r--r-- | spec/tasks/gitlab/backup_rake_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/tasks/gitlab/backup_rake_spec.rb b/spec/tasks/gitlab/backup_rake_spec.rb index 8a411b7720a..3d5d21c2a13 100644 --- a/spec/tasks/gitlab/backup_rake_spec.rb +++ b/spec/tasks/gitlab/backup_rake_spec.rb @@ -87,7 +87,7 @@ describe 'gitlab:app namespace rake task' do expect(tar_contents).to match('db/') expect(tar_contents).to match('uploads/') expect(tar_contents).to match('repositories/') - expect(tar_contents).not_to match(/^.{4,9}[rwx]/) + expect(tar_contents).not_to match(/^.{4,9}[rwx].*(db|uploads|repositories)\/$/) end it 'should delete temp directories' do |