]> git.decadent.org.uk Git - dak.git/commitdiff
use right queue names
authorJoerg Jaspert <joerg@debian.org>
Sat, 3 Dec 2011 13:31:04 +0000 (14:31 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sat, 3 Dec 2011 13:31:04 +0000 (14:31 +0100)
security has unembargoed/embargoed in use

Signed-off-by: Joerg Jaspert <joerg@debian.org>
daklib/queue_install.py

index 8d890d20ec528281e7161ad0c71d29d4787af87c..fac21f9981cc7b1b2d90c6093e2f1d6486b6cf22 100755 (executable)
@@ -92,7 +92,7 @@ def is_unembargo(u):
 
    # If we dont have the disembargo queue we are not on security and so not interested
    # in doing any security queue handling
-   disembargo_queue = get_policy_queue("disembargo")
+   disembargo_queue = get_policy_queue("unembargoed")
    if not disembargo_queue:
        return False
 
@@ -128,7 +128,7 @@ def is_unembargo(u):
    return ret
 
 def do_unembargo(u, summary, short_summary, chg, session=None):
-    polq=get_policy_queue('disembargo')
+    polq=get_policy_queue('unembargoed')
     package_to_queue(u, summary, short_summary,
                      polq, chg, session,
                      announce=None)
@@ -140,7 +140,7 @@ def is_embargo(u):
    # last in line, so if that exists, return true
    # Of course do not return true when we accept from out of newstage, as that means
    # it just left embargo and we want it in the archive
-   if get_policy_queue('embargo'):
+   if get_policy_queue('embargoed'):
        session = DBConn().session()
        dbc = get_dbchange(u.pkg.changes_file, session)
        if dbc and dbc.in_queue.queue_name in [ 'newstage' ]:
@@ -149,7 +149,7 @@ def is_embargo(u):
        return True
 
 def do_embargo(u, summary, short_summary, chg, session=None):
-    polq=get_policy_queue('embargo')
+    polq=get_policy_queue('embargoed')
     package_to_queue(u, summary, short_summary,
                      polq, chg, session,
                      announce=None)