Merge "Make apt-get upgrade non-interactive for configuration"
[releng/builder.git] / scripts / jjblib.py
index f5980929ba911210d9d1323eb0a4ba07a49fcce7..56e98d6aa56f100ac0827ed69b17d8722db249a6 100644 (file)
@@ -28,10 +28,6 @@ def parse_jjb_args():
                         help="Comma-seperated list of patterns of artifacts "
                              "to archive on build completion. "
                              "See: http://ant.apache.org/manual/Types/fileset.html")  # noqa
-    parser.add_argument("-r", "--autorelease", action="store_true",
-                        help="Enable the validate-autorelease job, you "
-                             "should enable this if your project is part of "
-                             "the simultanious release.")
     return parser.parse_args()
 
 
@@ -69,9 +65,6 @@ def create_template_config(project_dir, args):
     if args.archive_artifacts:
         cfg_data["ARCHIVE"] = args.archive_artifacts
 
-    if args.autorelease:
-        cfg_data["AUTORELEASE"] = args.autorelease
-
     if cfg_data:
         # Create project directory if it doesn't exist
         if not os.path.exists(project_dir):