mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
19 lines
425 B
Python
Executable File
19 lines
425 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import sys
|
|
from merge import loadQueueFile
|
|
import logging
|
|
|
|
logging.basicConfig(filename='/var/log/cloud.log',level=logging.DEBUG, format='%(asctime)s %(message)s')
|
|
|
|
# first commandline argument should be the file to process
|
|
if ( len(sys.argv) != 2 ):
|
|
print "Invalid usage"
|
|
sys.exit(1)
|
|
|
|
qf = loadQueueFile()
|
|
qf.setType("cl")
|
|
qf.setFile("cmdline.json")
|
|
qf.setPath("/var/chef/data_bags/vr")
|
|
qf.load()
|