brozzler/vagrant/vagrant-brozzler-new-job.py
Gretchen Leigh Miller 6f011cc6c8
Some checks are pending
Python Formatting Check / formatting (push) Waiting to run
Tests / Run tests (3.12) (push) Waiting to run
Tests / Run tests (3.8) (push) Waiting to run
ruff import sorting pass + adding uv.lock (#342)
* ruff import sorting pass

* add uv.lock

* move comment back to its proper place
2025-03-07 10:04:11 -08:00

59 lines
1.8 KiB
Python
Executable File

#!/usr/bin/env python
"""
vagrant-brozzler-new-job.py - runs brozzler-new-job inside the vagrant vm to
queue a job for your vagrant brozzler deployment.
This is a standalone script with no dependencies other than python, and should
work with python 2.7 or python 3.2+. The only reason it's not a bash script is
so we can use the argparse library.
Copyright (C) 2016-2019 Internet Archive
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.
"""
import argparse
import os
import subprocess
import sys
def main(argv=[]):
arg_parser = argparse.ArgumentParser(prog=os.path.basename(argv[0]))
arg_parser.add_argument(
"job_conf_file",
metavar="JOB_CONF_FILE",
help="brozzler job configuration file in yaml",
)
args = arg_parser.parse_args(args=argv[1:])
# cd to path with Vagrantfile so "vagrant ssh" knows what to do
os.chdir(os.path.dirname(__file__))
with open(args.job_conf_file, "rb") as f:
subprocess.call(
[
"vagrant",
"ssh",
"--",
"f=`mktemp` && cat > $f && "
"/home/vagrant/brozzler-ve3/bin/python "
"/home/vagrant/brozzler-ve3/bin/brozzler-new-job $f",
],
stdin=f,
)
if __name__ == "__main__":
main(sys.argv)