Hey,
I’ve modified my gitlab.rb to have a new data directory, using another machine as our file server:
git_data_dirs({
"default" => {
"path" => "/media/ShareName/git-data"
}
})
I’ve mounted this using fstab
//192.168.123.456/ShareName /media/ShareName cifs _netdev,uid=git,gid=git,iocharset=utf8 0 0
When running reconfigure I get the following assertion:
Failed asserting that mode permissions on "/media/ShareName/git-data" is 0700
If I modify my fstab to mount with these permissions, I get a new error:
Failed asserting that mode permissions on "/media/ShareName/git-data/repositories" is 2770
Is it possible to mount a share and use this for data?.. If I have to set the permissions in fstab I’m not sure how I can get different permissions for git-data and git-data/repositories…