forked from elastic/curator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_es_repo_mgr.py
executable file
·37 lines (27 loc) · 931 Bytes
/
run_es_repo_mgr.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
"""Wrapper for running es_repo_mgr from source."""
from curator.repomgrcli import repo_mgr_cli
if __name__ == '__main__':
try:
repo_mgr_cli()
except Exception as e:
if type(e) == type(RuntimeError()):
if 'ASCII' in str(e):
print('{0}'.format(e))
print(
'''
When used with Python 3 (and the DEB and RPM packages of Curator are compiled
and bundled with Python 3), Curator requires the locale to be unicode. Any of
the above unicode definitions are acceptable.
To set the locale to be unicode, try:
$ export LC_ALL=en_US.utf8
$ es_repo_mgr [ARGS]
Alternately, you should be able to specify the locale on the command-line:
$ LC_ALL=en_US.utf8 es_repo_mgr [ARGS]
Be sure to substitute your unicode variant for en_US.utf8
'''
)
else:
import sys
print('{0}'.format(e))
sys.exit(1)