View | Details | Raw Unified | Return to bug 220674 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-9 / +23 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	glusterfs
3
PORTNAME=	glusterfs
4
PORTVERSION=	3.9.0
4
PORTVERSION=	3.11.1
5
PORTREVISION=	3
5
PORTREVISION=	1
6
CATEGORIES=	net
6
CATEGORIES=	net
7
MASTER_SITES=	http://bits.gluster.org/pub/gluster/glusterfs/src/
7
MASTER_SITES=	http://bits.gluster.org/pub/gluster/glusterfs/src/
8
8
Lines 14-31 Link Here
14
14
15
LIB_DEPENDS=	libargp.so:devel/argp-standalone liburcu-bp.so:sysutils/liburcu
15
LIB_DEPENDS=	libargp.so:devel/argp-standalone liburcu-bp.so:sysutils/liburcu
16
16
17
USE_GCC=	any
18
19
USES=		bison gettext libtool pkgconfig python readline shebangfix \
17
USES=		bison gettext libtool pkgconfig python readline shebangfix \
20
		sqlite ssl
18
		sqlite ssl
21
19
22
BROKEN_SSL=	libressl
20
BROKEN_SSL=	libressl
23
21
24
SHEBANG_FILES=	extras/ganesha/scripts/create-export-ganesha.sh \
22
SHEBANG_FILES=	extras/peer_add_secret_pub.in \
25
		extras/ganesha/scripts/dbus-send.sh \
23
		events/src/glustereventsd.py \
26
		extras/ganesha/scripts/ganesha-ha.sh \
24
		events/src/peer_eventsapi.py \
27
		extras/ganesha/scripts/generate-epoch.py \
25
		tools/glusterfind/src/nodeagent.py \
28
		extras/peer_add_secret_pub.in \
26
		tools/glusterfind/src/brickfind.py \
27
		tools/glusterfind/src/changelog.py \
28
		tools/glusterfind/glusterfind.in \
29
		tools/gfind_missing_files/gfid_to_path.py \
30
		extras/pre-upgrade-script-for-quota.sh \
31
		events/tools/eventsdash.py \
32
		extras/post-upgrade-script-for-quota.sh \
33
		extras/snap_scheduler/gcron.py \
34
		extras/snap_scheduler/snap_scheduler.py \
35
		events/src/peer_eventsapi.py \
36
		events/src/glustereventsd.py \
29
		tools/glusterfind/S57glusterfind-delete-post.py
37
		tools/glusterfind/S57glusterfind-delete-post.py
30
38
31
USE_GNOME=	glib20 libxml2
39
USE_GNOME=	glib20 libxml2
Lines 46-50 Link Here
46
INSTALL_TARGET=	install-strip
54
INSTALL_TARGET=	install-strip
47
PLIST_SUB=	GLUSTERLIBDIR="lib/${PORTNAME}/${PORTVERSION}"
55
PLIST_SUB=	GLUSTERLIBDIR="lib/${PORTNAME}/${PORTVERSION}"
48
KMODDIR?=	/boot/modules
56
KMODDIR?=	/boot/modules
57
58
.include <bsd.port.options.mk>
59
60
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1101001
61
USE_GCC=	yes
62
.endif
49
63
50
.include <bsd.port.mk>
64
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1479924003
1
TIMESTAMP = 1499632037
2
SHA256 (glusterfs-3.9.0.tar.gz) = b417c674454b17d1851828a1ca395cb9e7ab198378391da04e2fb8911cc1fb14
2
SHA256 (glusterfs-3.11.1.tar.gz) = c7e0502631c9bc9da05795b666b74ef40a30a0344f5a2e205e65bd2faefe1442
3
SIZE (glusterfs-3.9.0.tar.gz) = 8709782
3
SIZE (glusterfs-3.11.1.tar.gz) = 9155001
(-)files/patch-configure (-2 / +2 lines)
Lines 1-6 Link Here
1
--- configure.orig	2016-11-15 14:54:31 UTC
1
--- configure.orig	2017-06-27 15:25:15 UTC
2
+++ configure
2
+++ configure
3
@@ -13428,6 +13428,9 @@ case $host_os in
3
@@ -13475,6 +13475,9 @@ case $host_os in
4
      linux*)
4
      linux*)
5
 #do nothing
5
 #do nothing
6
        ;;
6
        ;;
(-)files/patch-contrib-fuse-lib-mount.c (-10 lines)
Lines 1-10 Link Here
1
--- contrib/fuse-lib/mount.c.orig	2016-11-15 14:54:27 UTC
2
+++ contrib/fuse-lib/mount.c
3
@@ -256,6 +256,7 @@ fuse_mount_sys (const char *mountpoint, 
4
         build_iovec (&iov, &iovlen, "from", "/dev/fuse", -1);
5
         build_iovec (&iov, &iovlen, "volname", source, -1);
6
         build_iovec (&iov, &iovlen, "fd", fdstr, -1);
7
+        build_iovec (&iov, &iovlen, "allow_other", NULL, -1);
8
         ret = nmount (iov, iovlen, mountflags);
9
 #else
10
         ret = mount (source, mountpoint, fstype, mountflags,
(-)files/patch-contrib_fuse-lib_mount.c (+10 lines)
Line 0 Link Here
1
--- contrib/fuse-lib/mount.c.orig	2017-06-27 15:25:12 UTC
2
+++ contrib/fuse-lib/mount.c
3
@@ -382,6 +382,7 @@ fuse_mount_sys (const char *mountpoint, 
4
         build_iovec (&iov, &iovlen, "from", "/dev/fuse", -1);
5
         build_iovec (&iov, &iovlen, "volname", source, -1);
6
         build_iovec (&iov, &iovlen, "fd", fdstr, -1);
7
+        build_iovec (&iov, &iovlen, "allow_other", NULL, -1);
8
         ret = nmount (iov, iovlen, mountflags);
9
 #else
10
         ret = mount (source, mountpoint, fstype, mountflags,
(-)files/patch-extras-Makefile.in (-22 lines)
Lines 1-22 Link Here
1
--- extras/Makefile.in.orig	2016-11-15 14:54:33 UTC
2
+++ extras/Makefile.in
3
@@ -635,8 +635,8 @@ install-volDATA: $(vol_DATA)
4
 	  echo "$$d$$p"; \
5
 	done | $(am__base_list) | \
6
 	while read files; do \
7
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(voldir)'"; \
8
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(voldir)" || exit $$?; \
9
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(voldir)/$${files}.sample'"; \
10
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(voldir)/$${files}.sample" || exit $$?; \
11
 	done
12
 
13
 uninstall-volDATA:
14
@@ -935,7 +935,7 @@ install-data-local:
15
 	fi
16
 	$(mkdir_p) $(DESTDIR)$(GLUSTERD_WORKDIR)/groups
17
 	$(INSTALL_DATA) $(top_srcdir)/extras/group-virt.example \
18
-		$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/virt
19
+		$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/virt.sample
20
 
21
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
22
 # Otherwise a system limit (for SysV at least) may be exceeded.
(-)files/patch-extras_Makefile.in (+22 lines)
Line 0 Link Here
1
--- extras/Makefile.in.orig	2017-06-27 15:25:17 UTC
2
+++ extras/Makefile.in
3
@@ -637,8 +637,8 @@ install-volDATA: $(vol_DATA)
4
 	  echo "$$d$$p"; \
5
 	done | $(am__base_list) | \
6
 	while read files; do \
7
-	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(voldir)'"; \
8
-	  $(INSTALL_DATA) $$files "$(DESTDIR)$(voldir)" || exit $$?; \
9
+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(voldir)/$${files}.sample'"; \
10
+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(voldir)/$${files}.sample" || exit $$?; \
11
 	done
12
 
13
 uninstall-volDATA:
14
@@ -937,7 +937,7 @@ install-data-local:
15
 	fi
16
 	$(mkdir_p) $(DESTDIR)$(GLUSTERD_WORKDIR)/groups
17
 	$(INSTALL_DATA) $(top_srcdir)/extras/group-virt.example \
18
-		$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/virt
19
+		$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/virt.sample
20
 	$(INSTALL_DATA) $(top_srcdir)/extras/group-metadata-cache \
21
 		$(DESTDIR)$(GLUSTERD_WORKDIR)/groups/metadata-cache
22
 	$(INSTALL_DATA) $(top_srcdir)/extras/group-gluster-block \
(-)pkg-descr (-1 / +1 lines)
Lines 6-9 Link Here
6
is based on a stackable user space design and can deliver exceptional
6
is based on a stackable user space design and can deliver exceptional
7
performance for diverse workloads.
7
performance for diverse workloads.
8
8
9
WWW: http://www.gluster.org
9
WWW: https://www.gluster.org
(-)pkg-plist (-40 / +31 lines)
Lines 1-20 Link Here
1
bin/glusterfind
1
bin/glusterfind
2
@sample etc/ganesha/ganesha-ha.conf.sample
3
%%ETCDIR%%/eventsconfig.json
2
%%ETCDIR%%/eventsconfig.json
4
%%ETCDIR%%/gluster-rsyslog-5.8.conf
3
%%ETCDIR%%/gluster-rsyslog-5.8.conf
5
%%ETCDIR%%/gluster-rsyslog-7.2.conf
4
%%ETCDIR%%/gluster-rsyslog-7.2.conf
6
@sample %%ETCDIR%%/glusterd.vol.sample
5
@sample %%ETCDIR%%/glusterd.vol.sample
7
%%ETCDIR%%/glusterfs-georep-logrotate
6
%%ETCDIR%%/glusterfs-georep-logrotate
8
%%ETCDIR%%/glusterfs-logrotate
7
%%ETCDIR%%/glusterfs-logrotate
8
%%ETCDIR%%/group-gluster-block
9
%%ETCDIR%%/group-metadata-cache
10
%%ETCDIR%%/group-nl-cache
9
%%ETCDIR%%/group-virt.example
11
%%ETCDIR%%/group-virt.example
10
%%ETCDIR%%/logger.conf.example
12
%%ETCDIR%%/logger.conf.example
11
include/glusterfs/api/glfs-handles.h
13
include/glusterfs/api/glfs-handles.h
12
include/glusterfs/api/glfs.h
14
include/glusterfs/api/glfs.h
15
include/glusterfs/atomic.h
13
include/glusterfs/byte-order.h
16
include/glusterfs/byte-order.h
14
include/glusterfs/call-stub.h
17
include/glusterfs/call-stub.h
15
include/glusterfs/checksum.h
18
include/glusterfs/checksum.h
16
include/glusterfs/circ-buff.h
19
include/glusterfs/circ-buff.h
17
include/glusterfs/cli1-xdr.h
18
include/glusterfs/client_t.h
20
include/glusterfs/client_t.h
19
include/glusterfs/cluster-syncop.h
21
include/glusterfs/cluster-syncop.h
20
include/glusterfs/common-utils.h
22
include/glusterfs/common-utils.h
Lines 43-49 Link Here
43
include/glusterfs/glfs-message-id.h
45
include/glusterfs/glfs-message-id.h
44
include/glusterfs/globals.h
46
include/glusterfs/globals.h
45
include/glusterfs/glusterfs-acl.h
47
include/glusterfs/glusterfs-acl.h
46
include/glusterfs/glusterfs-fops.h
47
include/glusterfs/glusterfs.h
48
include/glusterfs/glusterfs.h
48
include/glusterfs/graph-utils.h
49
include/glusterfs/graph-utils.h
49
include/glusterfs/hashfn.h
50
include/glusterfs/hashfn.h
Lines 84-89 Link Here
84
include/glusterfs/rpc/rpc-common-xdr.h
85
include/glusterfs/rpc/rpc-common-xdr.h
85
include/glusterfs/rpc/rpc-drc.h
86
include/glusterfs/rpc/rpc-drc.h
86
include/glusterfs/rpc/rpc-lib-messages.h
87
include/glusterfs/rpc/rpc-lib-messages.h
88
include/glusterfs/rpc/rpc-pragmas.h
87
include/glusterfs/rpc/rpc-transport.h
89
include/glusterfs/rpc/rpc-transport.h
88
include/glusterfs/rpc/rpcsvc-common.h
90
include/glusterfs/rpc/rpcsvc-common.h
89
include/glusterfs/rpc/rpcsvc.h
91
include/glusterfs/rpc/rpcsvc.h
Lines 111-117 Link Here
111
include/glusterfs/timer.h
113
include/glusterfs/timer.h
112
include/glusterfs/timespec.h
114
include/glusterfs/timespec.h
113
include/glusterfs/trie.h
115
include/glusterfs/trie.h
114
include/glusterfs/tw.h
115
include/glusterfs/upcall-utils.h
116
include/glusterfs/upcall-utils.h
116
include/glusterfs/xlator.h
117
include/glusterfs/xlator.h
117
include/glusterfs/y.tab.h
118
include/glusterfs/y.tab.h
Lines 124-136 Link Here
124
%%GLUSTERLIBDIR%%/xlator/cluster/distribute.so
125
%%GLUSTERLIBDIR%%/xlator/cluster/distribute.so
125
%%GLUSTERLIBDIR%%/xlator/cluster/ec.so
126
%%GLUSTERLIBDIR%%/xlator/cluster/ec.so
126
%%GLUSTERLIBDIR%%/xlator/cluster/nufa.so
127
%%GLUSTERLIBDIR%%/xlator/cluster/nufa.so
127
%%GLUSTERLIBDIR%%/xlator/cluster/pump.so
128
%%GLUSTERLIBDIR%%/xlator/cluster/replicate.so
128
%%GLUSTERLIBDIR%%/xlator/cluster/replicate.so
129
%%GLUSTERLIBDIR%%/xlator/cluster/stripe.so
129
%%GLUSTERLIBDIR%%/xlator/cluster/stripe.so
130
%%GLUSTERLIBDIR%%/xlator/cluster/switch.so
130
%%GLUSTERLIBDIR%%/xlator/cluster/switch.so
131
%%GLUSTERLIBDIR%%/xlator/cluster/tier.so
131
%%GLUSTERLIBDIR%%/xlator/cluster/tier.so
132
%%GLUSTERLIBDIR%%/xlator/debug/error-gen.so
132
%%GLUSTERLIBDIR%%/xlator/debug/error-gen.so
133
%%GLUSTERLIBDIR%%/xlator/debug/io-stats.so
133
%%GLUSTERLIBDIR%%/xlator/debug/io-stats.so
134
%%GLUSTERLIBDIR%%/xlator/debug/sink.so
134
%%GLUSTERLIBDIR%%/xlator/debug/trace.so
135
%%GLUSTERLIBDIR%%/xlator/debug/trace.so
135
%%GLUSTERLIBDIR%%/xlator/encryption/crypt.so
136
%%GLUSTERLIBDIR%%/xlator/encryption/crypt.so
136
%%GLUSTERLIBDIR%%/xlator/encryption/rot-13.so
137
%%GLUSTERLIBDIR%%/xlator/encryption/rot-13.so
Lines 146-171 Link Here
146
%%GLUSTERLIBDIR%%/xlator/features/glupy.so
147
%%GLUSTERLIBDIR%%/xlator/features/glupy.so
147
%%GLUSTERLIBDIR%%/xlator/features/glupy/debug-trace.py
148
%%GLUSTERLIBDIR%%/xlator/features/glupy/debug-trace.py
148
%%GLUSTERLIBDIR%%/xlator/features/glupy/debug-trace.pyc
149
%%GLUSTERLIBDIR%%/xlator/features/glupy/debug-trace.pyc
149
%%GLUSTERLIBDIR%%/xlator/features/glupy/debug-trace.pyo
150
%%GLUSTERLIBDIR%%/xlator/features/glupy/debug-trace.%%PYTHON_PYOEXTENSION%%
150
%%GLUSTERLIBDIR%%/xlator/features/glupy/helloworld.py
151
%%GLUSTERLIBDIR%%/xlator/features/glupy/helloworld.py
151
%%GLUSTERLIBDIR%%/xlator/features/glupy/helloworld.pyc
152
%%GLUSTERLIBDIR%%/xlator/features/glupy/helloworld.pyc
152
%%GLUSTERLIBDIR%%/xlator/features/glupy/helloworld.pyo
153
%%GLUSTERLIBDIR%%/xlator/features/glupy/helloworld.%%PYTHON_PYOEXTENSION%%
153
%%GLUSTERLIBDIR%%/xlator/features/glupy/negative.py
154
%%GLUSTERLIBDIR%%/xlator/features/glupy/negative.py
154
%%GLUSTERLIBDIR%%/xlator/features/glupy/negative.pyc
155
%%GLUSTERLIBDIR%%/xlator/features/glupy/negative.pyc
155
%%GLUSTERLIBDIR%%/xlator/features/glupy/negative.pyo
156
%%GLUSTERLIBDIR%%/xlator/features/glupy/negative.%%PYTHON_PYOEXTENSION%%
156
%%GLUSTERLIBDIR%%/xlator/features/index.so
157
%%GLUSTERLIBDIR%%/xlator/features/index.so
157
%%GLUSTERLIBDIR%%/xlator/features/leases.so
158
%%GLUSTERLIBDIR%%/xlator/features/leases.so
158
%%GLUSTERLIBDIR%%/xlator/features/locks.so
159
%%GLUSTERLIBDIR%%/xlator/features/locks.so
159
%%GLUSTERLIBDIR%%/xlator/features/mac-compat.so
160
%%GLUSTERLIBDIR%%/xlator/features/marker.so
160
%%GLUSTERLIBDIR%%/xlator/features/marker.so
161
%%GLUSTERLIBDIR%%/xlator/features/posix-locks.so
161
%%GLUSTERLIBDIR%%/xlator/features/posix-locks.so
162
%%GLUSTERLIBDIR%%/xlator/features/prot_client.so
163
%%GLUSTERLIBDIR%%/xlator/features/prot_dht.so
164
%%GLUSTERLIBDIR%%/xlator/features/prot_server.so
165
%%GLUSTERLIBDIR%%/xlator/features/quiesce.so
162
%%GLUSTERLIBDIR%%/xlator/features/quiesce.so
166
%%GLUSTERLIBDIR%%/xlator/features/quota.so
163
%%GLUSTERLIBDIR%%/xlator/features/quota.so
167
%%GLUSTERLIBDIR%%/xlator/features/quotad.so
164
%%GLUSTERLIBDIR%%/xlator/features/quotad.so
168
%%GLUSTERLIBDIR%%/xlator/features/read-only.so
165
%%GLUSTERLIBDIR%%/xlator/features/read-only.so
166
%%GLUSTERLIBDIR%%/xlator/features/selinux.so
169
%%GLUSTERLIBDIR%%/xlator/features/shard.so
167
%%GLUSTERLIBDIR%%/xlator/features/shard.so
170
%%GLUSTERLIBDIR%%/xlator/features/snapview-client.so
168
%%GLUSTERLIBDIR%%/xlator/features/snapview-client.so
171
%%GLUSTERLIBDIR%%/xlator/features/snapview-server.so
169
%%GLUSTERLIBDIR%%/xlator/features/snapview-server.so
Lines 176-186 Link Here
176
%%GLUSTERLIBDIR%%/xlator/mgmt/glusterd.so
174
%%GLUSTERLIBDIR%%/xlator/mgmt/glusterd.so
177
%%GLUSTERLIBDIR%%/xlator/mount/api.so
175
%%GLUSTERLIBDIR%%/xlator/mount/api.so
178
%%GLUSTERLIBDIR%%/xlator/mount/fuse.so
176
%%GLUSTERLIBDIR%%/xlator/mount/fuse.so
179
%%GLUSTERLIBDIR%%/xlator/nfs/server.so
180
%%GLUSTERLIBDIR%%/xlator/performance/decompounder.so
177
%%GLUSTERLIBDIR%%/xlator/performance/decompounder.so
181
%%GLUSTERLIBDIR%%/xlator/performance/io-cache.so
178
%%GLUSTERLIBDIR%%/xlator/performance/io-cache.so
182
%%GLUSTERLIBDIR%%/xlator/performance/io-threads.so
179
%%GLUSTERLIBDIR%%/xlator/performance/io-threads.so
183
%%GLUSTERLIBDIR%%/xlator/performance/md-cache.so
180
%%GLUSTERLIBDIR%%/xlator/performance/md-cache.so
181
%%GLUSTERLIBDIR%%/xlator/performance/nl-cache.so
184
%%GLUSTERLIBDIR%%/xlator/performance/open-behind.so
182
%%GLUSTERLIBDIR%%/xlator/performance/open-behind.so
185
%%GLUSTERLIBDIR%%/xlator/performance/quick-read.so
183
%%GLUSTERLIBDIR%%/xlator/performance/quick-read.so
186
%%GLUSTERLIBDIR%%/xlator/performance/read-ahead.so
184
%%GLUSTERLIBDIR%%/xlator/performance/read-ahead.so
Lines 213-259 Link Here
213
lib/libglusterfs.so.0.0.1
211
lib/libglusterfs.so.0.0.1
214
lib/ocf/resource.d/glusterfs/glusterd
212
lib/ocf/resource.d/glusterfs/glusterd
215
lib/ocf/resource.d/glusterfs/volume
213
lib/ocf/resource.d/glusterfs/volume
216
lib/ocf/resource.d/heartbeat/ganesha_grace
217
lib/ocf/resource.d/heartbeat/ganesha_mon
218
lib/ocf/resource.d/heartbeat/ganesha_nfsd
219
%%PYTHON_SITELIBDIR%%/gluster/__init__.py
214
%%PYTHON_SITELIBDIR%%/gluster/__init__.py
220
%%PYTHON_SITELIBDIR%%/gluster/__init__.pyc
215
%%PYTHON_SITELIBDIR%%/gluster/__init__.pyc
221
%%PYTHON_SITELIBDIR%%/gluster/__init__.pyo
216
%%PYTHON_SITELIBDIR%%/gluster/__init__.%%PYTHON_PYOEXTENSION%%
222
%%PYTHON_SITELIBDIR%%/gluster/cliutils/__init__.py
217
%%PYTHON_SITELIBDIR%%/gluster/cliutils/__init__.py
223
%%PYTHON_SITELIBDIR%%/gluster/cliutils/__init__.pyc
218
%%PYTHON_SITELIBDIR%%/gluster/cliutils/__init__.pyc
224
%%PYTHON_SITELIBDIR%%/gluster/cliutils/__init__.pyo
219
%%PYTHON_SITELIBDIR%%/gluster/cliutils/__init__.%%PYTHON_PYOEXTENSION%%
225
%%PYTHON_SITELIBDIR%%/gluster/cliutils/cliutils.py
220
%%PYTHON_SITELIBDIR%%/gluster/cliutils/cliutils.py
226
%%PYTHON_SITELIBDIR%%/gluster/cliutils/cliutils.pyc
221
%%PYTHON_SITELIBDIR%%/gluster/cliutils/cliutils.pyc
227
%%PYTHON_SITELIBDIR%%/gluster/cliutils/cliutils.pyo
222
%%PYTHON_SITELIBDIR%%/gluster/cliutils/cliutils.%%PYTHON_PYOEXTENSION%%
228
%%PYTHON_SITELIBDIR%%/gluster/glupy/__init__.py
223
%%PYTHON_SITELIBDIR%%/gluster/glupy/__init__.py
229
%%PYTHON_SITELIBDIR%%/gluster/glupy/__init__.pyc
224
%%PYTHON_SITELIBDIR%%/gluster/glupy/__init__.pyc
230
%%PYTHON_SITELIBDIR%%/gluster/glupy/__init__.pyo
225
%%PYTHON_SITELIBDIR%%/gluster/glupy/__init__.%%PYTHON_PYOEXTENSION%%
231
libdata/pkgconfig/glusterfs-api.pc
226
libdata/pkgconfig/glusterfs-api.pc
232
libdata/pkgconfig/libgfchangelog.pc
227
libdata/pkgconfig/libgfchangelog.pc
233
libdata/pkgconfig/libgfdb.pc
228
libdata/pkgconfig/libgfdb.pc
234
libexec/ganesha/create-export-ganesha.sh
235
libexec/ganesha/dbus-send.sh
236
libexec/ganesha/ganesha-ha.sh
237
libexec/ganesha/generate-epoch.py
238
libexec/glusterfs/events/__init__.py
229
libexec/glusterfs/events/__init__.py
239
libexec/glusterfs/events/__init__.pyc
230
libexec/glusterfs/events/__init__.pyc
240
libexec/glusterfs/events/__init__.pyo
231
libexec/glusterfs/events/__init__.%%PYTHON_PYOEXTENSION%%
241
libexec/glusterfs/events/eventsapiconf.py
232
libexec/glusterfs/events/eventsapiconf.py
242
libexec/glusterfs/events/eventsapiconf.pyc
233
libexec/glusterfs/events/eventsapiconf.pyc
243
libexec/glusterfs/events/eventsapiconf.pyo
234
libexec/glusterfs/events/eventsapiconf.%%PYTHON_PYOEXTENSION%%
244
libexec/glusterfs/events/eventtypes.py
235
libexec/glusterfs/events/eventtypes.py
245
libexec/glusterfs/events/eventtypes.pyc
236
libexec/glusterfs/events/eventtypes.pyc
246
libexec/glusterfs/events/eventtypes.pyo
237
libexec/glusterfs/events/eventtypes.%%PYTHON_PYOEXTENSION%%
247
libexec/glusterfs/events/gf_event.py
238
libexec/glusterfs/events/gf_event.py
248
libexec/glusterfs/events/gf_event.pyc
239
libexec/glusterfs/events/gf_event.pyc
249
libexec/glusterfs/events/gf_event.pyo
240
libexec/glusterfs/events/gf_event.%%PYTHON_PYOEXTENSION%%
250
libexec/glusterfs/events/glustereventsd.py
241
libexec/glusterfs/events/glustereventsd.py
251
libexec/glusterfs/events/handlers.py
242
libexec/glusterfs/events/handlers.py
252
libexec/glusterfs/events/handlers.pyc
243
libexec/glusterfs/events/handlers.pyc
253
libexec/glusterfs/events/handlers.pyo
244
libexec/glusterfs/events/handlers.%%PYTHON_PYOEXTENSION%%
254
libexec/glusterfs/events/utils.py
245
libexec/glusterfs/events/utils.py
255
libexec/glusterfs/events/utils.pyc
246
libexec/glusterfs/events/utils.pyc
256
libexec/glusterfs/events/utils.pyo
247
libexec/glusterfs/events/utils.%%PYTHON_PYOEXTENSION%%
257
libexec/glusterfs/gfind_missing_files/gcrawler
248
libexec/glusterfs/gfind_missing_files/gcrawler
258
libexec/glusterfs/gfind_missing_files/gfid_to_path.py
249
libexec/glusterfs/gfind_missing_files/gfid_to_path.py
259
libexec/glusterfs/gfind_missing_files/gfid_to_path.sh
250
libexec/glusterfs/gfind_missing_files/gfid_to_path.sh
Lines 261-286 Link Here
261
libexec/glusterfs/glusterfind/S57glusterfind-delete-post.py
252
libexec/glusterfs/glusterfind/S57glusterfind-delete-post.py
262
libexec/glusterfs/glusterfind/__init__.py
253
libexec/glusterfs/glusterfind/__init__.py
263
libexec/glusterfs/glusterfind/__init__.pyc
254
libexec/glusterfs/glusterfind/__init__.pyc
264
libexec/glusterfs/glusterfind/__init__.pyo
255
libexec/glusterfs/glusterfind/__init__.%%PYTHON_PYOEXTENSION%%
265
libexec/glusterfs/glusterfind/brickfind.py
256
libexec/glusterfs/glusterfind/brickfind.py
266
libexec/glusterfs/glusterfind/changelog.py
257
libexec/glusterfs/glusterfind/changelog.py
267
libexec/glusterfs/glusterfind/changelogdata.py
258
libexec/glusterfs/glusterfind/changelogdata.py
268
libexec/glusterfs/glusterfind/changelogdata.pyc
259
libexec/glusterfs/glusterfind/changelogdata.pyc
269
libexec/glusterfs/glusterfind/changelogdata.pyo
260
libexec/glusterfs/glusterfind/changelogdata.%%PYTHON_PYOEXTENSION%%
270
libexec/glusterfs/glusterfind/conf.py
261
libexec/glusterfs/glusterfind/conf.py
271
libexec/glusterfs/glusterfind/conf.pyc
262
libexec/glusterfs/glusterfind/conf.pyc
272
libexec/glusterfs/glusterfind/conf.pyo
263
libexec/glusterfs/glusterfind/conf.%%PYTHON_PYOEXTENSION%%
273
libexec/glusterfs/glusterfind/libgfchangelog.py
264
libexec/glusterfs/glusterfind/libgfchangelog.py
274
libexec/glusterfs/glusterfind/libgfchangelog.pyc
265
libexec/glusterfs/glusterfind/libgfchangelog.pyc
275
libexec/glusterfs/glusterfind/libgfchangelog.pyo
266
libexec/glusterfs/glusterfind/libgfchangelog.%%PYTHON_PYOEXTENSION%%
276
libexec/glusterfs/glusterfind/main.py
267
libexec/glusterfs/glusterfind/main.py
277
libexec/glusterfs/glusterfind/main.pyc
268
libexec/glusterfs/glusterfind/main.pyc
278
libexec/glusterfs/glusterfind/main.pyo
269
libexec/glusterfs/glusterfind/main.%%PYTHON_PYOEXTENSION%%
279
libexec/glusterfs/glusterfind/nodeagent.py
270
libexec/glusterfs/glusterfind/nodeagent.py
280
libexec/glusterfs/glusterfind/tool.conf
271
libexec/glusterfs/glusterfind/tool.conf
281
libexec/glusterfs/glusterfind/utils.py
272
libexec/glusterfs/glusterfind/utils.py
282
libexec/glusterfs/glusterfind/utils.pyc
273
libexec/glusterfs/glusterfind/utils.pyc
283
libexec/glusterfs/glusterfind/utils.pyo
274
libexec/glusterfs/glusterfind/utils.%%PYTHON_PYOEXTENSION%%
284
libexec/glusterfs/peer_add_secret_pub
275
libexec/glusterfs/peer_add_secret_pub
285
libexec/glusterfs/peer_eventsapi.py
276
libexec/glusterfs/peer_eventsapi.py
286
man/man8/gluster.8.gz
277
man/man8/gluster.8.gz
Lines 290-295 Link Here
290
man/man8/mount.glusterfs.8.gz
281
man/man8/mount.glusterfs.8.gz
291
sbin/conf.py
282
sbin/conf.py
292
sbin/gcron.py
283
sbin/gcron.py
284
sbin/gf_attach
293
sbin/gfind_missing_files
285
sbin/gfind_missing_files
294
sbin/glfsheal
286
sbin/glfsheal
295
sbin/gluster
287
sbin/gluster
Lines 312-327 Link Here
312
%%DATADIR%%/scripts/post-upgrade-script-for-quota.sh
304
%%DATADIR%%/scripts/post-upgrade-script-for-quota.sh
313
%%DATADIR%%/scripts/pre-upgrade-script-for-quota.sh
305
%%DATADIR%%/scripts/pre-upgrade-script-for-quota.sh
314
%%DATADIR%%/scripts/stop-all-gluster-processes.sh
306
%%DATADIR%%/scripts/stop-all-gluster-processes.sh
307
/var/db/glusterd/groups/gluster-block
308
/var/db/glusterd/groups/metadata-cache
309
/var/db/glusterd/groups/nl-cache
315
@sample /var/db/glusterd/groups/virt.sample
310
@sample /var/db/glusterd/groups/virt.sample
316
/var/db/glusterd/hooks/1/add-brick/post/disabled-quota-root-xattr-heal.sh
311
/var/db/glusterd/hooks/1/add-brick/post/disabled-quota-root-xattr-heal.sh
317
/var/db/glusterd/hooks/1/add-brick/pre/S28Quota-enable-root-xattr-heal.sh
312
/var/db/glusterd/hooks/1/add-brick/pre/S28Quota-enable-root-xattr-heal.sh
318
/var/db/glusterd/hooks/1/delete/post/S57glusterfind-delete-post
313
/var/db/glusterd/hooks/1/delete/post/S57glusterfind-delete-post
319
/var/db/glusterd/hooks/1/reset/post/S31ganesha-reset.sh
320
/var/db/glusterd/hooks/1/set/post/S30samba-set.sh
314
/var/db/glusterd/hooks/1/set/post/S30samba-set.sh
321
/var/db/glusterd/hooks/1/set/post/S32gluster_enable_shared_storage.sh
315
/var/db/glusterd/hooks/1/set/post/S32gluster_enable_shared_storage.sh
322
/var/db/glusterd/hooks/1/start/post/S29CTDBsetup.sh
316
/var/db/glusterd/hooks/1/start/post/S29CTDBsetup.sh
323
/var/db/glusterd/hooks/1/start/post/S30samba-start.sh
317
/var/db/glusterd/hooks/1/start/post/S30samba-start.sh
324
/var/db/glusterd/hooks/1/start/post/S31ganesha-start.sh
325
/var/db/glusterd/hooks/1/stop/pre/S29CTDB-teardown.sh
318
/var/db/glusterd/hooks/1/stop/pre/S29CTDB-teardown.sh
326
/var/db/glusterd/hooks/1/stop/pre/S30samba-stop.sh
319
/var/db/glusterd/hooks/1/stop/pre/S30samba-stop.sh
327
@dir /var/db/glusterd/events
320
@dir /var/db/glusterd/events
Lines 333-340 Link Here
333
@dir /var/db/glusterd/hooks/1/add-brick
326
@dir /var/db/glusterd/hooks/1/add-brick
334
@dir /var/db/glusterd/hooks/1/delete/post
327
@dir /var/db/glusterd/hooks/1/delete/post
335
@dir /var/db/glusterd/hooks/1/delete
328
@dir /var/db/glusterd/hooks/1/delete
336
@dir /var/db/glusterd/hooks/1/reset/post
337
@dir /var/db/glusterd/hooks/1/reset
338
@dir /var/db/glusterd/hooks/1/set/post
329
@dir /var/db/glusterd/hooks/1/set/post
339
@dir /var/db/glusterd/hooks/1/set
330
@dir /var/db/glusterd/hooks/1/set
340
@dir /var/db/glusterd/hooks/1/start/post
331
@dir /var/db/glusterd/hooks/1/start/post

Return to bug 220674