35c35 < install_type = cfg.get_cfg_option_str("install_type", "packages") --- > install_type = util.get_cfg_option_str(chef_cfg, "install_type", "packages") 37c37 < if install_type = "gems": --- > if install_type == "gems": 65,66c65,66 < firstboot_json_fh.write(runlist_item + "\n") < firstboot_json_fh.write("]\n\}") --- > firstboot_json_fh.write("\"" + runlist_item + "\"\n") > firstboot_json_fh.write("]\n}")