2011-03-24 15:51:44 -07:00
|
|
|
#!/usr/bin/env python
|
2013-09-20 01:00:54 +08:00
|
|
|
# Copyright (c) 2010-2012 OpenStack Foundation
|
2010-07-12 17:03:45 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
|
|
# implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from swift.obj.replicator import ObjectReplicator
|
2010-11-11 16:41:07 -06:00
|
|
|
from swift.common.utils import parse_options
|
|
|
|
from swift.common.daemon import run_daemon
|
2012-09-28 12:24:15 -07:00
|
|
|
from optparse import OptionParser
|
2010-07-12 17:03:45 -05:00
|
|
|
|
2010-08-20 00:42:38 +00:00
|
|
|
if __name__ == '__main__':
|
2012-09-28 12:24:15 -07:00
|
|
|
parser = OptionParser("%prog CONFIG [options]")
|
|
|
|
parser.add_option('-d', '--devices',
|
|
|
|
help='Replicate only given devices. '
|
|
|
|
'Comma-separated list')
|
|
|
|
parser.add_option('-p', '--partitions',
|
|
|
|
help='Replicate only given partitions. '
|
|
|
|
'Comma-separated list')
|
2015-01-22 15:26:19 -08:00
|
|
|
parser.add_option('-i', '--policies',
|
|
|
|
help='Replicate only given policy indices. '
|
|
|
|
'Comma-separated list')
|
2012-09-28 12:24:15 -07:00
|
|
|
conf_file, options = parse_options(parser=parser, once=True)
|
2010-11-11 16:41:07 -06:00
|
|
|
run_daemon(ObjectReplicator, conf_file, **options)
|