
This just does python rewrites of these tools that were shell or sed or grep. Clearly the user of cloud-init has python, but it turns out that getting sane versions of sed or grep on different unixes is less than simple.
24 lines
686 B
Python
Executable File
24 lines
686 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
if 'CLOUD_INIT_TOP_D' in os.environ:
|
|
topd = os.path.realpath(os.environ.get('CLOUD_INIT_TOP_D'))
|
|
else:
|
|
topd = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
for fname in ("setup.py", "requirements.txt"):
|
|
if not os.path.isfile(os.path.join(topd, fname)):
|
|
sys.stderr.write("Unable to locate '%s' file that should "
|
|
"exist in cloud-init root directory." % fname)
|
|
sys.exit(1)
|
|
|
|
with open(os.path.join(topd, "requirements.txt"), "r") as fp:
|
|
for line in fp:
|
|
if not line.strip() or line.startswith("#"):
|
|
continue
|
|
sys.stdout.write(line)
|
|
|
|
sys.exit(0)
|