https://github.com/opsway/chef-davfsclient
Chef DAVFS client
https://github.com/opsway/chef-davfsclient
Last synced: about 2 months ago
JSON representation
Chef DAVFS client
- Host: GitHub
- URL: https://github.com/opsway/chef-davfsclient
- Owner: opsway
- Created: 2013-06-15T19:43:54.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-16T08:18:37.000Z (almost 13 years ago)
- Last Synced: 2025-01-19T11:18:09.905Z (over 1 year ago)
- Language: Ruby
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Description
===========
Installs davfs2 and configure mounts.
Adds /etc/init.d/davfsclient to mount on startup.
Requirements
============
## Platform:
Tested on:
* Ubuntu 12.04
Attributes
==========
* `node[:davfsclient][:ignore_home]` - allow mount points in users homes
* `node[:davfsclient][:mounts]` - hash with mount points definitions
Example:
default[:davfsclient][:mounts]={
:share1=>{
"remote"=>"https://foo.bar/blablabla/resours_to_mount_1",
"local"=>"/mnt/dav/1",
"user"=>"user1",
"password"=>"password1"
},
:share2=>{
"remote"=>"https://foo.bar/blablabla/resours_to_mount_2",
"local"=>"/mnt/dav/2",
"user"=>"user2",
"password"=>"password2"
}
}