diff options
author | Amar Tumballi <amarts@redhat.com> | 2012-07-12 22:59:04 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-07-12 16:16:35 -0700 |
commit | 89bd58e170118e4d534e6113c1c368c1a39cc919 (patch) | |
tree | 9f8b7e235b9821191394735305739f65d3c17324 /doc | |
parent | ac6be8b4204330d117d24e1473becda3f3989cb1 (diff) |
core: remove the unused files - round 2
BUG: 764890
Change-Id: I3eb626eeaa2a09f0e248444f560c2a0eaf46c642
Signed-off-by: Amar Tumballi <amarts@redhat.com>
Reviewed-on: http://review.gluster.com/3660
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/glusterfs.vol.sample | 53 | ||||
-rw-r--r-- | doc/glusterfsd.vol.sample | 44 |
2 files changed, 0 insertions, 97 deletions
diff --git a/doc/glusterfs.vol.sample b/doc/glusterfs.vol.sample deleted file mode 100644 index 977363b921b..00000000000 --- a/doc/glusterfs.vol.sample +++ /dev/null @@ -1,53 +0,0 @@ -### file: client-volume.vol.sample - -##################################### -### GlusterFS Client Volume File ## -##################################### - -#### CONFIG FILE RULES: -### "#" is comment character. -### - Config file is case sensitive -### - Options within a volume block can be in any order. -### - Spaces or tabs are used as delimitter within a line. -### - Each option should end within a line. -### - Missing or commented fields will assume default values. -### - Blank/commented lines are allowed. -### - Sub-volumes should already be defined above before referring. - -### Add client feature and attach to remote subvolume -volume client - type protocol/client - option transport-type tcp -# option transport-type unix -# option transport-type ib-sdp - option remote-host 127.0.0.1 # IP address of the remote brick -# option transport.socket.remote-port 24016 - -# option transport-type rdma -# option transport.rdma.remote-port 24016 -# option transport.rdma.work-request-send-count 16 -# option transport.rdma.work-request-recv-count 16 - - option remote-subvolume brick # name of the remote volume -end-volume - -### Add readahead feature -#volume readahead -# type performance/read-ahead -# option page-count 2 # cache per file = (page-count x page-size) -# subvolumes client -#end-volume - -### Add IO-Cache feature -#volume iocache -# type performance/io-cache -# subvolumes readahead -#end-volume - -### Add writeback feature -#volume writeback -# type performance/write-behind -# option window-size 2MB -# option flush-behind off -# subvolumes iocache -#end-volume diff --git a/doc/glusterfsd.vol.sample b/doc/glusterfsd.vol.sample deleted file mode 100644 index ec2fd341ef0..00000000000 --- a/doc/glusterfsd.vol.sample +++ /dev/null @@ -1,44 +0,0 @@ -### file: server-volume.vol.sample - -##################################### -### GlusterFS Server Volume File ## -##################################### - -#### CONFIG FILE RULES: -### "#" is comment character. -### - Config file is case sensitive -### - Options within a volume block can be in any order. -### - Spaces or tabs are used as delimitter within a line. -### - Multiple values to options will be : delimited. -### - Each option should end within a line. -### - Missing or commented fields will assume default values. -### - Blank/commented lines are allowed. -### - Sub-volumes should already be defined above before referring. - -### Export volume "brick" with the contents of "/home/export" directory. -volume brick - type storage/posix # POSIX FS translator - option directory /home/export # Export this directory -end-volume - -### Add network serving capability to above brick. -volume server - type protocol/server - option transport-type tcp -# option transport-type unix -# option transport-type ib-sdp -# option transport.socket.bind-address 192.168.1.10 # Default is to listen - # on all interfaces -# option transport.socket.listen-port 24016 - -# option transport-type rdma -# option transport.rdma.listen-port 24016 -# option transport.rdma.work-request-send-count 64 -# option transport.rdma.work-request-recv-count 64 - - subvolumes brick -# NOTE: Access to any volume through protocol/server is denied by -# default. You need to explicitly grant access through # "auth" -# option. - option auth.addr.brick.allow * # Allow access to "brick" volume -end-volume |