Skip to content

Commit 0ebe9e4

Browse files
committed
plenary_template_library: Update repository structure
- `master` is now `main` - `template-library-grid` and `template-library-os` now have a single `main` branch
1 parent 1249e01 commit 0ebe9e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/scripts/plenary_template_library/plenary_template_library.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
RELEASES_URL = 'http://www.quattor.org/release/releases.json'
1717
LIBRARY_URL_PATTERN = 'https://github.com/quattor/template-library-%s.git'
1818
LIBRARY_BRANCHES = {
19-
'core': ['master'],
20-
'grid': ['umd-3', 'umd-4'],
21-
'os': ['sl6.x-x86_64', 'el7.x-x86_64', 'el8.x-x86-64'],
22-
'standard': ['master'],
19+
'core': ['main'],
20+
'grid': ['main'],
21+
'os': ['main'],
22+
'standard': ['main'],
2323
'openstack': ['mitaka', 'newton', 'ocata'],
2424
}
2525

@@ -112,7 +112,7 @@ def sync_template_library(base_dir, releases):
112112

113113
target_dir = join(base_dir, release, library)
114114
logger.debug('Target dir is %s', target_dir)
115-
if branch != 'master':
115+
if branch != 'main':
116116
tag = f'{branch}-{tag}'
117117
target_dir = join(target_dir, branch)
118118
logger.debug('Added branch to target dir, which is now %s', target_dir)

0 commit comments

Comments
 (0)