import run_keyword as rk # Setting master_pid correctly influences the behavior of plug-ins like # DB_Logging program_pid = os.getpid() master_pid = os.environ.get('AUTOBOOT_MASTER_PID', program_pid) pgm_name = re.sub('\\.py$', '', os.path.basename(__file__)) # Set up boot data structures. boot_table = create_boot_table() valid_boot_types = create_valid_boot_list(boot_table) boot_lists = read_boot_lists() last_ten = [] state = st.return_state_constant('default_state') cp_setup_called = 0 next_boot = "" base_tool_dir_path = os.path.normpath( os.environ.get('AUTOBOOT_BASE_TOOL_DIR_PATH', "/tmp")) + os.sep ffdc_dir_path = os.path.normpath(os.environ.get('FFDC_DIR_PATH', '')) + os.sep boot_success = 0 status_dir_path = os.environ.get('STATUS_DIR_PATH', "") if status_dir_path != "": status_dir_path = os.path.normpath(status_dir_path) + os.sep default_power_on = "REST Power On" default_power_off = "REST Power Off" boot_count = 0 LOG_LEVEL = BuiltIn().get_variable_value("${LOG_LEVEL}")
import run_keyword as rk # Setting master_pid correctly influences the behavior of plug-ins like # DB_Logging program_pid = os.getpid() master_pid = os.environ.get('AUTOBOOT_MASTER_PID', program_pid) pgm_name = re.sub('\\.py$', '', os.path.basename(__file__)) # Set up boot data structures. boot_table = create_boot_table() valid_boot_types = create_valid_boot_list(boot_table) boot_lists = read_boot_lists() last_ten = [] state = st.return_state_constant('default_state') cp_setup_called = 0 next_boot = "" base_tool_dir_path = os.path.normpath(os.environ.get( 'AUTOBOOT_BASE_TOOL_DIR_PATH', "/tmp")) + os.sep ffdc_dir_path = os.path.normpath(os.environ.get('FFDC_DIR_PATH', '')) + os.sep boot_success = 0 status_dir_path = os.environ.get('STATUS_DIR_PATH', "") if status_dir_path != "": status_dir_path = os.path.normpath(status_dir_path) + os.sep default_power_on = "REST Power On" default_power_off = "REST Power Off" boot_count = 0 LOG_LEVEL = BuiltIn().get_variable_value("${LOG_LEVEL}")