zephyr_mirror: Add option to change the root path.
This is relevant for running not out of AFS on Linerva. (imported from commit 28549830c99ad5a52349fbcc9e53dcb3c5ef25a1)
This commit is contained in:
parent
f6fe157d3d
commit
1e50224ca2
|
@ -12,10 +12,6 @@ import datetime
|
||||||
import textwrap
|
import textwrap
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
root_path = "/mit/tabbott/for_friends"
|
|
||||||
sys.path[:0] = [root_path, root_path + "/python-zephyr",
|
|
||||||
root_path + "/python-zephyr/build/lib.linux-x86_64-2.6/"]
|
|
||||||
|
|
||||||
def to_humbug_username(zephyr_username):
|
def to_humbug_username(zephyr_username):
|
||||||
if "@" in zephyr_username:
|
if "@" in zephyr_username:
|
||||||
(user, realm) = zephyr_username.split("@")
|
(user, realm) = zephyr_username.split("@")
|
||||||
|
@ -162,9 +158,9 @@ def update_subscriptions_from_humbug():
|
||||||
ensure_subscribed(stream)
|
ensure_subscribed(stream)
|
||||||
|
|
||||||
def maybe_restart_mirroring_script():
|
def maybe_restart_mirroring_script():
|
||||||
if os.stat(root_path + "/stamps/restart_stamp").st_mtime > start_time or \
|
if os.stat(options.root_path + "/stamps/restart_stamp").st_mtime > start_time or \
|
||||||
((options.user == "tabbott" or options.user == "tabbott/extra") and
|
((options.user == "tabbott" or options.user == "tabbott/extra") and
|
||||||
os.stat(root_path + "/stamps/tabbott_stamp").st_mtime > start_time):
|
os.stat(options.root_path + "/stamps/tabbott_stamp").st_mtime > start_time):
|
||||||
print
|
print
|
||||||
print "%s: zephyr mirroring script has been updated; restarting..." % \
|
print "%s: zephyr mirroring script has been updated; restarting..." % \
|
||||||
(datetime.datetime.now())
|
(datetime.datetime.now())
|
||||||
|
@ -172,8 +168,8 @@ def maybe_restart_mirroring_script():
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
if bot_name == "extra_mirror.py":
|
if bot_name == "extra_mirror.py":
|
||||||
os.execvp(root_path + "/extra_mirror.py", sys.argv)
|
os.execvp(options.root_path + "/extra_mirror.py", sys.argv)
|
||||||
os.execvp(root_path + "/user_root/zephyr_mirror.py", sys.argv)
|
os.execvp(options.root_path + "/user_root/zephyr_mirror.py", sys.argv)
|
||||||
except:
|
except:
|
||||||
print "Error restarting, trying again."
|
print "Error restarting, trying again."
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
|
@ -588,12 +584,20 @@ if __name__ == "__main__":
|
||||||
default=os.environ["USER"],
|
default=os.environ["USER"],
|
||||||
help=optparse.SUPPRESS_HELP,
|
help=optparse.SUPPRESS_HELP,
|
||||||
action='store')
|
action='store')
|
||||||
|
parser.add_option('--root-path',
|
||||||
|
dest='root_path',
|
||||||
|
default="/mit/tabbott/for_friends",
|
||||||
|
help=optparse.SUPPRESS_HELP,
|
||||||
|
action='store')
|
||||||
parser.add_option('--api-key-file',
|
parser.add_option('--api-key-file',
|
||||||
dest='api_key_file',
|
dest='api_key_file',
|
||||||
default=os.path.join(os.environ["HOME"], "Private", ".humbug-api-key"),
|
default=os.path.join(os.environ["HOME"], "Private", ".humbug-api-key"),
|
||||||
action='store')
|
action='store')
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
|
sys.path[:0] = [options.root_path, options.root_path + "/python-zephyr",
|
||||||
|
options.root_path + "/python-zephyr/build/lib.linux-x86_64-2.6/"]
|
||||||
|
|
||||||
# In case this is an automated restart of the mirroring script,
|
# In case this is an automated restart of the mirroring script,
|
||||||
# and we have lost AFS tokens, first try reading the API key from
|
# and we have lost AFS tokens, first try reading the API key from
|
||||||
# the environment so that we can skip doing a filesystem read.
|
# the environment so that we can skip doing a filesystem read.
|
||||||
|
|
Loading…
Reference in a new issue