3.11.2 GA
This commit is contained in:
parent
cf719a5584
commit
34353f2c46
@ -1,16 +0,0 @@
|
||||
[DEFAULT]
|
||||
bind_ip = 127.0.0.1
|
||||
bind_port = 6012
|
||||
workers = 2
|
||||
|
||||
[pipeline:main]
|
||||
pipeline = account-server
|
||||
|
||||
[app:account-server]
|
||||
use = egg:swift#account
|
||||
|
||||
[account-replicator]
|
||||
|
||||
[account-auditor]
|
||||
|
||||
[account-reaper]
|
@ -1,18 +0,0 @@
|
||||
[DEFAULT]
|
||||
bind_ip = 127.0.0.1
|
||||
bind_port = 6011
|
||||
workers = 2
|
||||
|
||||
[pipeline:main]
|
||||
pipeline = container-server
|
||||
|
||||
[app:container-server]
|
||||
use = egg:swift#container
|
||||
|
||||
[container-replicator]
|
||||
|
||||
[container-updater]
|
||||
|
||||
[container-auditor]
|
||||
|
||||
[container-sync]
|
@ -1,12 +0,0 @@
|
||||
# After network.target just because.
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Auditor
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-auditor /etc/swift/account-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Auditor instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-auditor /etc/swift/account-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Reaper
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-reaper /etc/swift/account-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Reaper instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-reaper /etc/swift/account-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,12 +0,0 @@
|
||||
# After network.target just so replicator can talk to other nodes.
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Replicator
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-replicator /etc/swift/account-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Replicator instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-replicator /etc/swift/account-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,78 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
### BEGIN INIT INFO
|
||||
# Provides: gluster-swift-account
|
||||
# Required-Start: $remote_fs
|
||||
# Required-Stop: $remote_fs
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Swift account server
|
||||
# Description: Account server for swift.
|
||||
### END INIT INFO
|
||||
|
||||
# gluster-swift-account: swift account server
|
||||
#
|
||||
# chkconfig: - 20 80
|
||||
# description: Account server for swift.
|
||||
|
||||
. /etc/rc.d/init.d/functions
|
||||
. /usr/share/gluster-swift/functions
|
||||
|
||||
name="account"
|
||||
|
||||
[ -e "/etc/sysconfig/gluster-swift-$name" ] && . "/etc/sysconfig/gluster-swift-$name"
|
||||
|
||||
lockfile="/var/lock/subsys/gluster-swift-account"
|
||||
|
||||
start() {
|
||||
swift_action "$name" start
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && touch $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
stop() {
|
||||
swift_action "$name" stop
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && rm -f $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
rh_status() {
|
||||
swift_action "$name" status
|
||||
}
|
||||
|
||||
rh_status_q() {
|
||||
rh_status &> /dev/null
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
rh_status_q && exit 0
|
||||
$1
|
||||
;;
|
||||
stop)
|
||||
rh_status_q || exit 0
|
||||
$1
|
||||
;;
|
||||
restart)
|
||||
$1
|
||||
;;
|
||||
reload)
|
||||
;;
|
||||
status)
|
||||
rh_status
|
||||
;;
|
||||
condrestart|try-restart)
|
||||
rh_status_q || exit 0
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}"
|
||||
exit 2
|
||||
esac
|
||||
exit $?
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Server
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-server /etc/swift/account-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Account Server instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-account-server /etc/swift/account-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Auditor
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-auditor /etc/swift/container-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Auditor instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-auditor /etc/swift/container-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,12 +0,0 @@
|
||||
# After network.target just so replicator can talk to other nodes.
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Replicator
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-replicator /etc/swift/container-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Replicator instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-replicator /etc/swift/container-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Updater
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-updater /etc/swift/container-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Updater instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-updater /etc/swift/container-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,78 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
### BEGIN INIT INFO
|
||||
# Provides: gluster-swift-container
|
||||
# Required-Start: $remote_fs
|
||||
# Required-Stop: $remote_fs
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Swift container server
|
||||
# Description: Container server for swift.
|
||||
### END INIT INFO
|
||||
|
||||
# gluster-swift-container: swift container server
|
||||
#
|
||||
# chkconfig: - 20 80
|
||||
# description: Container server for swift.
|
||||
|
||||
. /etc/rc.d/init.d/functions
|
||||
. /usr/share/gluster-swift/functions
|
||||
|
||||
name="container"
|
||||
|
||||
[ -e "/etc/sysconfig/gluster-swift-$name" ] && . "/etc/sysconfig/gluster-swift-$name"
|
||||
|
||||
lockfile="/var/lock/subsys/gluster-swift-container"
|
||||
|
||||
start() {
|
||||
swift_action "$name" start
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && touch $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
stop() {
|
||||
swift_action "$name" stop
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && rm -f $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
rh_status() {
|
||||
swift_action "$name" status
|
||||
}
|
||||
|
||||
rh_status_q() {
|
||||
rh_status &> /dev/null
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
rh_status_q && exit 0
|
||||
$1
|
||||
;;
|
||||
stop)
|
||||
rh_status_q || exit 0
|
||||
$1
|
||||
;;
|
||||
restart)
|
||||
$1
|
||||
;;
|
||||
reload)
|
||||
;;
|
||||
status)
|
||||
rh_status
|
||||
;;
|
||||
condrestart|try-restart)
|
||||
rh_status_q || exit 0
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}"
|
||||
exit 2
|
||||
esac
|
||||
exit $?
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Server
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-server /etc/swift/container-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Container Server instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-container-server /etc/swift/container-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,64 +0,0 @@
|
||||
# vim: filetype=sh
|
||||
|
||||
. /etc/rc.d/init.d/functions
|
||||
|
||||
swift_action() {
|
||||
retval=0
|
||||
server="$1"
|
||||
call="swift_$2"
|
||||
|
||||
if [[ -f "/etc/swift/$server-server.conf" ]]; then
|
||||
$call "$server" \
|
||||
"/etc/swift/$server-server.conf" \
|
||||
"/var/run/swift/$server-server.pid"
|
||||
[ $? -ne 0 ] && retval=1
|
||||
elif [[ -d "/etc/swift/$server-server/" ]]; then
|
||||
declare -i count=0
|
||||
mkdir -p /var/run/swift/$server-server
|
||||
for name in $( ls "/etc/swift/$server-server/" ); do
|
||||
$call "$server" \
|
||||
"/etc/swift/$server-server/$name" \
|
||||
"/var/run/swift/$server-server/$count.pid"
|
||||
[ $? -ne 0 ] && retval=1
|
||||
count=$count+1
|
||||
done
|
||||
fi
|
||||
return $retval
|
||||
}
|
||||
|
||||
swift_start() {
|
||||
name="$1"
|
||||
long_name="$name-server"
|
||||
conf_file="$2"
|
||||
pid_file="$3"
|
||||
|
||||
ulimit -n ${SWIFT_MAX_FILES-32768}
|
||||
echo -n "Starting swift-$long_name: "
|
||||
daemon --pidfile $pid_file \
|
||||
"/usr/bin/swift-$long_name $conf_file &>/var/log/swift-startup.log & echo \$! > $pid_file"
|
||||
retval=$?
|
||||
echo
|
||||
return $retval
|
||||
}
|
||||
|
||||
swift_stop() {
|
||||
name="$1"
|
||||
long_name="$name-server"
|
||||
conf_name="$2"
|
||||
pid_file="$3"
|
||||
|
||||
echo -n "Stopping swift-$long_name: "
|
||||
killproc -p $pid_file -d ${SWIFT_STOP_DELAY-15} $long_name
|
||||
retval=$?
|
||||
echo
|
||||
return $retval
|
||||
}
|
||||
|
||||
swift_status() {
|
||||
name="$1"
|
||||
long_name="$name-server"
|
||||
conf_name="$2"
|
||||
pid_file="$3"
|
||||
|
||||
status -p $pid_file $long_name
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
# After network.target just because.
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Auditor
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-auditor /etc/swift/object-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Auditor instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-auditor /etc/swift/object-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Expirer
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-expirer /etc/swift/object-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Expirer instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-expirer /etc/swift/object-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,12 +0,0 @@
|
||||
# After network.target just so replicator can talk to other nodes.
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Replicator
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-replicator /etc/swift/object-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Replicator instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-replicator /etc/swift/object-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Updater
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-updater /etc/swift/object-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Updater instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-updater /etc/swift/object-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,79 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
### BEGIN INIT INFO
|
||||
# Provides: gluster-swift-object
|
||||
# Required-Start: $remote_fs
|
||||
# Required-Stop: $remote_fs
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Swift object server
|
||||
# Description: Object server for swift.
|
||||
### END INIT INFO
|
||||
|
||||
# gluster-swift-object: swift object server
|
||||
#
|
||||
# chkconfig: - 20 80
|
||||
# description: Object server for swift.
|
||||
|
||||
. /etc/rc.d/init.d/functions
|
||||
. /usr/share/gluster-swift/functions
|
||||
|
||||
name="object"
|
||||
|
||||
[ -e "/etc/sysconfig/gluster-swift-$name" ] && . "/etc/sysconfig/gluster-swift-$name"
|
||||
|
||||
lockfile="/var/lock/subsys/gluster-swift-object"
|
||||
|
||||
start() {
|
||||
swift_action "$name" start
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && touch $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
stop() {
|
||||
swift_action "$name" stop
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && rm -f $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
rh_status() {
|
||||
swift_action "$name" status
|
||||
}
|
||||
|
||||
rh_status_q() {
|
||||
rh_status &> /dev/null
|
||||
}
|
||||
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
rh_status_q && exit 0
|
||||
$1
|
||||
;;
|
||||
stop)
|
||||
rh_status_q || exit 0
|
||||
$1
|
||||
;;
|
||||
restart)
|
||||
$1
|
||||
;;
|
||||
reload)
|
||||
;;
|
||||
status)
|
||||
rh_status
|
||||
;;
|
||||
condrestart|try-restart)
|
||||
rh_status_q || exit 0
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}"
|
||||
exit 2
|
||||
esac
|
||||
exit $?
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Server
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-server /etc/swift/object-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Object Server instance %I
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-object-server /etc/swift/object-server/%i.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,79 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
### BEGIN INIT INFO
|
||||
# Provides: gluster-swift-proxy
|
||||
# Required-Start: $remote_fs
|
||||
# Required-Stop: $remote_fs
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Swift proxy server
|
||||
# Description: Account server for swift.
|
||||
### END INIT INFO
|
||||
|
||||
# gluster-swift-proxy: swift proxy server
|
||||
#
|
||||
# chkconfig: - 20 80
|
||||
# description: Proxy server for swift.
|
||||
|
||||
. /etc/rc.d/init.d/functions
|
||||
. /usr/share/gluster-swift/functions
|
||||
|
||||
name="proxy"
|
||||
|
||||
[ -e "/etc/sysconfig/gluster-swift-$name" ] && . "/etc/sysconfig/gluster-swift-$name"
|
||||
|
||||
lockfile="/var/lock/subsys/gluster-swift-proxy"
|
||||
|
||||
start() {
|
||||
swift_action "$name" start
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && touch $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
stop() {
|
||||
swift_action "$name" stop
|
||||
retval=$?
|
||||
[ $retval -eq 0 ] && rm -f $lockfile
|
||||
return $retval
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
rh_status() {
|
||||
swift_action "$name" status
|
||||
}
|
||||
|
||||
rh_status_q() {
|
||||
rh_status &> /dev/null
|
||||
}
|
||||
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
rh_status_q && exit 0
|
||||
$1
|
||||
;;
|
||||
stop)
|
||||
rh_status_q || exit 0
|
||||
$1
|
||||
;;
|
||||
restart)
|
||||
$1
|
||||
;;
|
||||
reload)
|
||||
;;
|
||||
status)
|
||||
rh_status
|
||||
;;
|
||||
condrestart|try-restart)
|
||||
rh_status_q || exit 0
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}"
|
||||
exit 2
|
||||
esac
|
||||
exit $?
|
@ -1,11 +0,0 @@
|
||||
[Unit]
|
||||
Description=OpenStack Object Storage (swift) - Proxy Server
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=swift
|
||||
ExecStart=/usr/bin/swift-proxy-server /etc/swift/proxy-server.conf
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
@ -1,6 +0,0 @@
|
||||
# swift needs a couple of directories in /var/run
|
||||
d /var/run/swift 0755 swift root
|
||||
d /var/run/swift/account-server 0755 swift root
|
||||
d /var/run/swift/container-server 0755 swift root
|
||||
d /var/run/swift/object-server 0755 swift root
|
||||
d /var/run/swift/proxy-server 0755 swift root
|
@ -1,6 +0,0 @@
|
||||
/var/log/glusterfs/*glusterd.vol.log {
|
||||
missingok
|
||||
postrotate
|
||||
/bin/kill -HUP `cat /var/run/glusterd.pid 2>/dev/null` 2>/dev/null || true
|
||||
endscript
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
/var/log/glusterfs/glusterfs.log {
|
||||
missingok
|
||||
postrotate
|
||||
/usr/bin/killall -HUP gluster 2>/dev/null || true
|
||||
endscript
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
/var/log/glusterfs/glusterfs.log {
|
||||
missingok
|
||||
postrotate
|
||||
/usr/bin/killall -HUP glusterfs 2>/dev/null || true
|
||||
endscript
|
||||
}
|
244
glusterfs.spec
244
glusterfs.spec
@ -179,8 +179,8 @@
|
||||
Summary: Distributed File System
|
||||
%if ( 0%{_for_fedora_koji_builds} )
|
||||
Name: glusterfs
|
||||
Version: 3.11.1
|
||||
Release: 2%{?prereltag:.%{prereltag}}%{?dist}
|
||||
Version: 3.11.2
|
||||
Release: 1%{?prereltag:.%{prereltag}}%{?dist}
|
||||
%else
|
||||
Name: @PACKAGE_NAME@
|
||||
Version: @PACKAGE_VERSION@
|
||||
@ -1010,45 +1010,53 @@ exit 0
|
||||
%if ( 0%{!?_without_rdma:1} )
|
||||
%exclude %{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport/rdma*
|
||||
%endif
|
||||
%dir %{_datadir}/glusterfs
|
||||
%dir %{_datadir}/glusterfs/scripts
|
||||
%{_datadir}/glusterfs/scripts/post-upgrade-script-for-quota.sh
|
||||
%{_datadir}/glusterfs/scripts/pre-upgrade-script-for-quota.sh
|
||||
%{_datadir}/glusterfs/scripts/post-upgrade-script-for-quota.sh
|
||||
%{_datadir}/glusterfs/scripts/pre-upgrade-script-for-quota.sh
|
||||
# xlators that are needed on the client- and on the server-side
|
||||
%dir %{_libdir}/glusterfs
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/auth
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/auth/addr.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/auth/login.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/auth/addr.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/auth/login.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport/socket.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport/socket.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/error-gen.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/io-stats.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/sink.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/trace.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/error-gen.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/io-stats.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/sink.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/debug/trace.so
|
||||
%if ( ! ( 0%{?rhel} && 0%{?rhel} < 6 ) )
|
||||
# RHEL-5 based distributions have a too old openssl
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/encryption/crypt.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/encryption
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/encryption/crypt.so
|
||||
%endif
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/access-control.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/barrier.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/cdc.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/changelog.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/gfid-access.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/read-only.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/shard.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/snapview-client.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/worm.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/meta.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/io-cache.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/io-threads.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/md-cache.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/open-behind.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/quick-read.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/read-ahead.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/readdir-ahead.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/stat-prefetch.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/write-behind.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/nl-cache.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/system/posix-acl.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/access-control.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/barrier.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/cdc.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/changelog.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/gfid-access.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/read-only.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/shard.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/snapview-client.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/worm.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/meta.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/io-cache.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/io-threads.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/md-cache.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/open-behind.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/quick-read.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/read-ahead.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/readdir-ahead.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/stat-prefetch.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/write-behind.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/nl-cache.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/system
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/system/posix-acl.so
|
||||
%dir %attr(0775,gluster,gluster) %{_localstatedir}/run/gluster
|
||||
%if 0%{?_tmpfilesdir:1}
|
||||
%{_tmpfilesdir}/gluster.conf
|
||||
@ -1058,12 +1066,15 @@ exit 0
|
||||
%exclude %{_libdir}/*.so
|
||||
# libgfapi files
|
||||
%{_libdir}/libgfapi.*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mount/api.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mount
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mount/api.so
|
||||
|
||||
%files api-devel
|
||||
%{_libdir}/pkgconfig/glusterfs-api.pc
|
||||
%{_libdir}/libgfapi.so
|
||||
%{_includedir}/glusterfs/api/*
|
||||
%dir %{_includedir}/glusterfs
|
||||
%dir %{_includedir}/glusterfs/api
|
||||
%{_includedir}/glusterfs/api/*
|
||||
|
||||
%files cli
|
||||
%{_sbindir}/gluster
|
||||
@ -1071,40 +1082,57 @@ exit 0
|
||||
%{_sysconfdir}/bash_completion.d/gluster
|
||||
|
||||
%files client-xlators
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/cluster/*.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/cluster
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/cluster/*.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/protocol
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/protocol/client.so
|
||||
|
||||
|
||||
%files devel
|
||||
%dir %{_includedir}/glusterfs
|
||||
%{_includedir}/glusterfs/*
|
||||
%{_includedir}/glusterfs/*
|
||||
%exclude %{_includedir}/glusterfs/api
|
||||
%exclude %{_libdir}/libgfapi.so
|
||||
%{_libdir}/*.so
|
||||
# Glupy Translator examples
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy/debug-trace.*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy/helloworld.*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy/negative.*
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy/debug-trace.*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy/helloworld.*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy/negative.*
|
||||
%{_libdir}/pkgconfig/libgfchangelog.pc
|
||||
%if ( 0%{!?_without_tiering:1} )
|
||||
%{_libdir}/pkgconfig/libgfdb.pc
|
||||
%endif
|
||||
|
||||
%files extra-xlators
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/encryption/rot-13.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/quiesce.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing/features/template.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing/performance/symlink-cache.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/encryption
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/encryption/rot-13.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/glupy.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/quiesce.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing/features
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing/features/template.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing/performance
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/testing/performance/symlink-cache.so
|
||||
# Glupy Python files
|
||||
%{python2_sitelib}/gluster/glupy/*
|
||||
%dir %{python2_sitelib}/gluster
|
||||
%dir %{python2_sitelib}/gluster/glupy
|
||||
%{python2_sitelib}/gluster/glupy/*
|
||||
|
||||
%files fuse
|
||||
# glusterfs is a symlink to glusterfsd, -server depends on -fuse.
|
||||
%{_sbindir}/glusterfs
|
||||
%{_sbindir}/glusterfsd
|
||||
%config(noreplace) %{_sysconfdir}/logrotate.d/glusterfs
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mount/fuse.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mount
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mount/fuse.so
|
||||
/sbin/mount.glusterfs
|
||||
%if ( 0%{!?_without_fusermount:1} )
|
||||
%{_bindir}/fusermount-glusterfs
|
||||
@ -1117,8 +1145,9 @@ exit 0
|
||||
|
||||
%if ( 0%{?_with_gnfs:1} )
|
||||
%files gnfs
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/nfs
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/nfs/*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/nfs/*
|
||||
%ghost %dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/nfs
|
||||
%ghost %attr(0600,-,-) %{_sharedstatedir}/glusterd/nfs/nfs-server.vol
|
||||
%ghost %dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/nfs/run
|
||||
@ -1131,15 +1160,18 @@ exit 0
|
||||
|
||||
%{_sbindir}/gfind_missing_files
|
||||
%{_sbindir}/gluster-mountbroker
|
||||
%{_libexecdir}/glusterfs/gsyncd
|
||||
%{_libexecdir}/glusterfs/python/syncdaemon/*
|
||||
%{_libexecdir}/glusterfs/gverify.sh
|
||||
%{_libexecdir}/glusterfs/set_geo_rep_pem_keys.sh
|
||||
%{_libexecdir}/glusterfs/peer_gsec_create
|
||||
%{_libexecdir}/glusterfs/peer_mountbroker
|
||||
%{_libexecdir}/glusterfs/peer_mountbroker.py*
|
||||
%{_libexecdir}/glusterfs/gfind_missing_files
|
||||
%{_libexecdir}/glusterfs/peer_georep-sshkey.py*
|
||||
%dir %{_libexecdir}/glusterfs
|
||||
%dir %{_libexecdir}/glusterfs/python
|
||||
%dir %{_libexecdir}/glusterfs/python/syncdaemon
|
||||
%{_libexecdir}/glusterfs/gsyncd
|
||||
%{_libexecdir}/glusterfs/python/syncdaemon/*
|
||||
%{_libexecdir}/glusterfs/gverify.sh
|
||||
%{_libexecdir}/glusterfs/set_geo_rep_pem_keys.sh
|
||||
%{_libexecdir}/glusterfs/peer_gsec_create
|
||||
%{_libexecdir}/glusterfs/peer_mountbroker
|
||||
%{_libexecdir}/glusterfs/peer_mountbroker.py*
|
||||
%{_libexecdir}/glusterfs/gfind_missing_files
|
||||
%{_libexecdir}/glusterfs/peer_georep-sshkey.py*
|
||||
%{_sbindir}/gluster-georep-sshkey
|
||||
|
||||
|
||||
@ -1150,12 +1182,14 @@ exit 0
|
||||
%attr(0755,-,-) %{_sharedstatedir}/glusterd/hooks/1/gsync-create/post/S56glusterd-geo-rep-create-post.sh
|
||||
%ghost %dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/hooks/1/gsync-create/pre
|
||||
|
||||
%{_datadir}/glusterfs/scripts/get-gfid.sh
|
||||
%{_datadir}/glusterfs/scripts/slave-upgrade.sh
|
||||
%{_datadir}/glusterfs/scripts/gsync-upgrade.sh
|
||||
%{_datadir}/glusterfs/scripts/generate-gfid-file.sh
|
||||
%{_datadir}/glusterfs/scripts/gsync-sync-gfid
|
||||
%{_datadir}/glusterfs/scripts/schedule_georep.py*
|
||||
%dir %{_datadir}/glusterfs
|
||||
%dir %{_datadir}/glusterfs/scripts
|
||||
%{_datadir}/glusterfs/scripts/get-gfid.sh
|
||||
%{_datadir}/glusterfs/scripts/slave-upgrade.sh
|
||||
%{_datadir}/glusterfs/scripts/gsync-upgrade.sh
|
||||
%{_datadir}/glusterfs/scripts/generate-gfid-file.sh
|
||||
%{_datadir}/glusterfs/scripts/gsync-sync-gfid
|
||||
%{_datadir}/glusterfs/scripts/schedule_georep.py*
|
||||
%endif
|
||||
|
||||
%files libs
|
||||
@ -1170,20 +1204,22 @@ exit 0
|
||||
%files -n python2-gluster
|
||||
# introducing glusterfs module in site packages.
|
||||
# so that all other gluster submodules can reside in the same namespace.
|
||||
%{python2_sitelib}/gluster/__init__.*
|
||||
%{python2_sitelib}/gluster/cliutils
|
||||
%dir %{python2_sitelib}/gluster
|
||||
%{python2_sitelib}/gluster/__init__.*
|
||||
%{python2_sitelib}/gluster/cliutils
|
||||
|
||||
%if ( 0%{!?_without_rdma:1} )
|
||||
%files rdma
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport/rdma*
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/rpc-transport/rdma*
|
||||
%endif
|
||||
|
||||
%if ( ! 0%{_for_fedora_koji_builds} )
|
||||
%files regression-tests
|
||||
%{_prefix}/share/glusterfs/run-tests.sh
|
||||
%{_prefix}/share/glusterfs/tests
|
||||
%{_datadir}/glusterfs/run-tests.sh
|
||||
%{_datadir}/glusterfs/tests
|
||||
%dir %{_prefix}/share/glusterfs
|
||||
%{_prefix}/share/glusterfs/run-tests.sh
|
||||
%dir %{_prefix}/share/glusterfs/tests
|
||||
%{_datadir}/glusterfs/tests/*
|
||||
%exclude %{_datadir}/glusterfs/tests/vagrant
|
||||
%endif
|
||||
|
||||
@ -1221,29 +1257,34 @@ exit 0
|
||||
# {_sbindir}/glusterfsd is the actual binary, but glusterfs (client) is a
|
||||
# symlink. The binary itself (and symlink) are part of the glusterfs-fuse
|
||||
# package, because glusterfs-server depends on that anyway.
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/arbiter.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/bit-rot.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/bitrot-stub.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/arbiter.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/bit-rot.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/bitrot-stub.so
|
||||
%if ( 0%{!?_without_tiering:1} )
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/changetimerecorder.so
|
||||
%endif
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/index.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/locks.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/posix*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/snapview-server.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/marker.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/quota*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/selinux.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/trash.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/upcall.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/leases.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mgmt*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/protocol/server*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/storage*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/decompounder.so
|
||||
%if ( 0%{!?_without_tiering:1} )
|
||||
%{_libdir}/libgfdb.so.*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/changetimerecorder.so
|
||||
%{_libdir}/libgfdb.so.*
|
||||
%endif
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/index.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/locks.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/posix*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/snapview-server.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/marker.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/quota*
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/selinux.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/trash.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/upcall.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/features/leases.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mgmt
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/mgmt/glusterd.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/protocol
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/protocol/server.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/storage
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/storage/bd.so
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/storage/posix.so
|
||||
%dir %{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance
|
||||
%{_libdir}/glusterfs/%{version}%{?prereltag}/xlator/performance/decompounder.so
|
||||
|
||||
# snap_scheduler
|
||||
%{_sbindir}/snap_scheduler.py
|
||||
@ -1311,12 +1352,15 @@ exit 0
|
||||
%ghost %dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/vols
|
||||
|
||||
# Extra utility script
|
||||
%dir %{_datadir}/glusterfs
|
||||
%dir %{_datadir}/glusterfs/scripts
|
||||
%{_datadir}/glusterfs/scripts/stop-all-gluster-processes.sh
|
||||
|
||||
# Incrementalapi
|
||||
%{_libexecdir}/glusterfs/glusterfind
|
||||
%dir %{_libexecdir}/glusterfs
|
||||
%{_libexecdir}/glusterfs/glusterfind
|
||||
%{_libexecdir}/glusterfs/peer_add_secret_pub
|
||||
%{_bindir}/glusterfind
|
||||
%{_libexecdir}/glusterfs/peer_add_secret_pub
|
||||
|
||||
%if ( 0%{?_with_firewalld:1} )
|
||||
%{_prefix}/lib/firewalld/services/glusterfs.xml
|
||||
@ -1326,9 +1370,12 @@ exit 0
|
||||
%if ( 0%{!?_without_events:1} )
|
||||
%files events
|
||||
%config(noreplace) %{_sysconfdir}/glusterfs/eventsconfig.json
|
||||
%dir %attr(0755,-,-) %{_sharedstatedir}/glusterd/events
|
||||
%{_libexecdir}/glusterfs/events
|
||||
%{_libexecdir}/glusterfs/peer_eventsapi.py*
|
||||
%dir %{_sharedstatedir}/glusterd
|
||||
%dir %{_sharedstatedir}/glusterd/events
|
||||
%dir %{_libexecdir}/glusterfs
|
||||
%dir %{_libexecdir}/glusterfs/events
|
||||
%{_libexecdir}/glusterfs/events/*
|
||||
%{_libexecdir}/glusterfs/peer_eventsapi.py*
|
||||
%{_sbindir}/glustereventsd
|
||||
%{_sbindir}/gluster-eventsapi
|
||||
%{_datadir}/glusterfs/scripts/eventsdash.py*
|
||||
@ -1340,6 +1387,9 @@ exit 0
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jul 21 2017 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 3.11.2-1
|
||||
- 3.11.2 GA
|
||||
|
||||
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 3.11.1-2
|
||||
- Rebuild due to bug in RPM (RHBZ #1468476)
|
||||
|
||||
@ -1438,7 +1488,7 @@ exit 0
|
||||
- 3.8.0 RC1
|
||||
|
||||
* Wed Apr 27 2016 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 3.7.11-2
|
||||
- %postun libs on RHEL6 w/o firewalld
|
||||
- %%postun libs on RHEL6 w/o firewalld
|
||||
|
||||
* Mon Apr 18 2016 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 3.7.11-1
|
||||
- GlusterFS 3.7.11 GA
|
||||
|
@ -1,6 +0,0 @@
|
||||
/var/log/glusterfs/*glusterfsd.log /var/log/glusterfs/bricks/*.log {
|
||||
missingok
|
||||
postrotate
|
||||
/bin/kill -HUP `cat /var/run/glusterfsd.pid 2>/dev/null` 2>/dev/null || true
|
||||
endscript
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
[DEFAULT]
|
||||
|
||||
[object-expirer]
|
||||
# auto_create_account_prefix = .
|
||||
|
||||
[pipeline:main]
|
||||
pipeline = catch_errors cache proxy-server
|
||||
|
||||
[app:proxy-server]
|
||||
use = egg:swift#proxy
|
||||
|
||||
[filter:cache]
|
||||
use = egg:swift#memcache
|
||||
memcache_servers = 127.0.0.1:11211
|
||||
|
||||
[filter:catch_errors]
|
||||
use = egg:swift#catch_errors
|
@ -1,16 +0,0 @@
|
||||
[DEFAULT]
|
||||
bind_ip = 127.0.0.1
|
||||
bind_port = 6010
|
||||
workers = 3
|
||||
|
||||
[pipeline:main]
|
||||
pipeline = object-server
|
||||
|
||||
[app:object-server]
|
||||
use = egg:swift#object
|
||||
|
||||
[object-replicator]
|
||||
|
||||
[object-updater]
|
||||
|
||||
[object-auditor]
|
@ -1,39 +0,0 @@
|
||||
[DEFAULT]
|
||||
bind_port = 8080
|
||||
workers = 8
|
||||
user = swift
|
||||
|
||||
[pipeline:main]
|
||||
pipeline = healthcheck cache authtoken keystone proxy-server
|
||||
|
||||
[app:proxy-server]
|
||||
use = egg:swift#proxy
|
||||
allow_account_management = true
|
||||
account_autocreate = true
|
||||
|
||||
[filter:cache]
|
||||
use = egg:swift#memcache
|
||||
memcache_servers = 127.0.0.1:11211
|
||||
|
||||
[filter:catch_errors]
|
||||
use = egg:swift#catch_errors
|
||||
|
||||
[filter:healthcheck]
|
||||
use = egg:swift#healthcheck
|
||||
|
||||
[filter:keystone]
|
||||
paste.filter_factory = keystone.middleware.swift_auth:filter_factory
|
||||
operator_roles = admin, SwiftOperator
|
||||
is_admin = true
|
||||
cache = swift.cache
|
||||
|
||||
[filter:authtoken]
|
||||
paste.filter_factory = keystone.middleware.auth_token:filter_factory
|
||||
admin_tenant_name = %SERVICE_TENANT_NAME%
|
||||
admin_user = %SERVICE_USER%
|
||||
admin_password = %SERVICE_PASSWORD%
|
||||
auth_host = 127.0.0.1
|
||||
auth_port = 35357
|
||||
auth_protocol = http
|
||||
signing_dir = /tmp/keystone-signing-swift
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (glusterfs-3.11.1.tar.gz) = dc8aa3dd7186a38823dd5f316cc11aafbffc64aa021731e7e07850dff8be2442a461135b9484d0419e33158cbc55573bf954d9e4893a18928318fd5509d4e249
|
||||
SHA512 (glusterfs-3.11.2.tar.gz) = 98dec5d50f17adcb37a928172b84711b4214cab869141c777eb78415fe997924c9d6ba5fe871e94d2dc4eabf23f8a125643fa4c16af1565553e15092b5c26c88
|
||||
|
@ -1,2 +0,0 @@
|
||||
[swift-hash]
|
||||
swift_hash_path_suffix = %SWIFT_HASH_PATH_SUFFIX%
|
Loading…
Reference in New Issue
Block a user