[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][ftp-team/dak][deploy] 2 commits: configure external signature requests



Title: GitLab

Ansgar Burchardt pushed to branch deploy at Debian FTP Team / dak

Commits:

5 changed files:

Changes:

  • config/debian-security/cron.unchecked
    ... ... @@ -50,6 +50,7 @@ if [ -n "$changes" ]; then
    50 50
         doanything=true
    
    51 51
         echo "$timestamp": ${changes:-"Nothing to do in disembargo"}  >> $reportdis
    
    52 52
         dak process-upload -a -d "$disembargo" >> $reportdis
    
    53
    +    dak manage-external-signature-requests
    
    53 54
     fi
    
    54 55
     
    
    55 56
     for queue in embargoed unembargoed; do
    

  • config/debian-security/dak.conf
    ... ... @@ -170,3 +170,15 @@ Urgency
    170 170
         critical;
    
    171 171
       };
    
    172 172
     };
    
    173
    +
    
    174
    +Include {
    
    175
    +  "/srv/security-master.debian.org/dak/config/debian/external-signatures.conf";
    
    176
    +};
    
    177
    +
    
    178
    +External-Signature-Requests {
    
    179
    +  Default-Suites {
    
    180
    +    "testing";
    
    181
    +  };
    
    182
    +  Export "/srv/security-master.debian.org/build-queues/project/external-signatures/requests.json";
    
    183
    +  ExportSigningKeys { "AD7B928FBB67C45A4A484560A275AE756013B497"; };
    
    184
    +};

  • config/debian/common
    ... ... @@ -174,6 +174,7 @@ function do_unchecked () {
    174 174
                 dak process-upload -a -d "$unchecked"
    
    175 175
                 dak process-commands -d "$unchecked"
    
    176 176
             } >> ${report}
    
    177
    +        dak manage-external-signature-requests
    
    177 178
     
    
    178 179
             sync_debbugs
    
    179 180
             do_buildd
    

  • config/debian/dak.conf
    ... ... @@ -307,3 +307,18 @@ Command::DM-Admin {
    307 307
         "309911BEA966D0613053045711B4E5FF15B0FD82"; // mhy
    
    308 308
       };
    
    309 309
     };
    
    310
    +
    
    311
    +Include {
    
    312
    +  "/srv/ftp-master.debian.org/dak/config/debian/external-signatures.conf";
    
    313
    +};
    
    314
    +
    
    315
    +External-Signature-Requests {
    
    316
    +  Default-Suites {
    
    317
    +    "experimental";
    
    318
    +    "unstable";
    
    319
    +    // "testing-proposed-updates";
    
    320
    +    // "stretch-backports";
    
    321
    +  };
    
    322
    +  Export "/srv/ftp-master.debian.org/public/incoming.debian.org/web/debian-buildd/project/external-signatures/requests.json";
    
    323
    +  ExportSigningKeys { "69E6775AC793814879D7406D761F1FE865C742EC"; };
    
    324
    +};

  • config/debian/external-signatures.conf
    1
    +External-Signature-Requests {
    
    2
    +  Sources {
    
    3
    +    // fwupdate {
    
    4
    +    // };
    
    5
    +    // grub2 {
    
    6
    +    // };
    
    7
    +    linux {
    
    8
    +      Packages {
    
    9
    +        "linux-image-amd64-signed-template";
    
    10
    +        "linux-image-arm64-signed-template";
    
    11
    +        "linux-image-i386-signed-template";
    
    12
    +      };
    
    13
    +      Architectures {
    
    14
    +        "amd64"; "arm64"; "i386";
    
    15
    +      };
    
    16
    +    };
    
    17
    +    shim {
    
    18
    +      Packages {
    
    19
    +        "shim-amd64-signed-template";
    
    20
    +        "shim-arm64-signed-template";
    
    21
    +        "shim-i386-signed-template";
    
    22
    +      };
    
    23
    +      Architectures {
    
    24
    +        "amd64"; "arm64"; "i386";
    
    25
    +      };
    
    26
    +    };
    
    27
    +  };
    
    28
    +};


  • Reply to: