|
| 1 | +package main |
| 2 | + |
| 3 | +func init() { |
| 4 | + checkConfig(localConfig) |
| 5 | + mainConfig = localConfig |
| 6 | +} |
| 7 | + |
| 8 | +var localConfig = &GlobalConfig{ |
| 9 | + AccessLevel: AccessPublic, |
| 10 | + Clients: map[string]string{ |
| 11 | + "global-local": "Uvx0zUMD4QreHaASliwXVBaGlOnlcZlR", |
| 12 | + }, |
| 13 | + ContactEmail: "dvyukov@google.com", |
| 14 | + DefaultNamespace: "upstream", |
| 15 | + Namespaces: map[string]*Config{ |
| 16 | + "upstream": { |
| 17 | + AccessLevel: AccessPublic, |
| 18 | + DisplayTitle: "Linux", |
| 19 | + SimilarityDomain: "Linux", |
| 20 | + Key: "Uvx0zUMD4QreHaASliwXVBaGlOnlcZlR", |
| 21 | + Clients: map[string]string{ |
| 22 | + "upstream-client": "Uvx0zUMD4QreHaASliwXVBaGlOnlcZlR", |
| 23 | + }, |
| 24 | + Repos: []KernelRepo{ |
| 25 | + { |
| 26 | + URL: "git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git", |
| 27 | + Branch: "master", |
| 28 | + Alias: "upstream", |
| 29 | + ReportingPriority: 9, |
| 30 | + }, |
| 31 | + }, |
| 32 | + MailWithoutReport: true, |
| 33 | + WaitForRepro: 0, |
| 34 | + Managers: map[string]ConfigManager{ |
| 35 | + }, |
| 36 | + Reporting: []Reporting{ |
| 37 | + { |
| 38 | + AccessLevel: AccessPublic, |
| 39 | + Name: "upstream", |
| 40 | + DisplayTitle: "upstream", |
| 41 | + DailyLimit: 10, |
| 42 | + Config: &EmailConfig{ |
| 43 | + Email: "dvyukov@google.com", |
| 44 | + SubjectPrefix: "[local syzbot]", |
| 45 | + }, |
| 46 | + }, |
| 47 | + }, |
| 48 | + }, |
| 49 | + }, |
| 50 | +} |
0 commit comments