Modules Reference¶
runners.autopkg_tools¶
process_recipe(recipe_path, git_repo_root, munki_subdir, gh_repo, token, settings, autopkg_prefs)
async
¶
Run recipe in isolated worktree, commit, push, create PR.
Source code in lambopkg/runners/autopkg_tools.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | |
worktree(repo, path, branch)
¶
Create git worktree for isolated recipe processing.
Source code in lambopkg/runners/autopkg_tools.py
20 21 22 23 24 25 26 27 28 29 | |
runners.autopromote¶
get_channel_multiplier(plist)
¶
Retrieve the float multiplier for plist's channel. Returns multiplier or 1
Source code in lambopkg/runners/autopromote.py
241 242 243 244 245 246 247 248 249 250 251 252 | |
get_force_install_days(catalog)
¶
Returns the number of days a package should live in a catalog, as configured
Source code in lambopkg/runners/autopromote.py
194 195 196 197 198 199 200 201 | |
get_force_install_time(plist)
¶
Returns a force install datetime shifted to match the configured force_install_time
Source code in lambopkg/runners/autopromote.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |
get_ideal_catalogs(catalogs)
¶
Given a list of catalogs, returns the catalog which appears last in CONFIG['catalog_order'] and and the list of catalogs leading up to that catalog
Source code in lambopkg/runners/autopromote.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | |
get_next_catalog(latest_catalog)
¶
Returns the next catalog configured in the promotion schedule
Source code in lambopkg/runners/autopromote.py
228 229 230 231 232 233 234 235 236 237 238 | |
get_pkgs(root)
¶
Returns a list of pkginfo paths given a root directory.
Source code in lambopkg/runners/autopromote.py
122 123 124 125 126 127 128 129 | |
get_previous_pkg(current)
¶
Returns the previous version of package in PKGINFOS_PATHS
Source code in lambopkg/runners/autopromote.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | |
load_config()
¶
Reads autopromote.json from hardcoded path CONFIG_FILE
Source code in lambopkg/runners/autopromote.py
87 88 89 90 91 92 93 94 95 | |
load_logger(logfile)
¶
Returns logger object pointing to stdout or a file, as configured
Source code in lambopkg/runners/autopromote.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | |
notify_slack(promotions, error)
¶
Given a list of results from promote_pkgs, send a slack alert with a summary
Source code in lambopkg/runners/autopromote.py
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | |
order_catalogs(catalogs)
¶
Takes a list of catalogs and returns a dict ordered according the configured catalog schedule.
Source code in lambopkg/runners/autopromote.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |
output_results(promotions, error)
¶
Given a list of results from promote_pkgs, write a file to disk
Source code in lambopkg/runners/autopromote.py
432 433 434 435 436 437 438 439 440 441 442 443 | |
pkg_version(plist)
¶
Returns parsed semantic version from plist
Source code in lambopkg/runners/autopromote.py
132 133 134 135 | |
promote_pkg(current_plist, path)
¶
Given a pkginfo plist, parse its catalogs, apply a new catalog (promotion) and shift force_install_after_date if neccessary.
Returns a boolean promoted and a dict results
Source code in lambopkg/runners/autopromote.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 | |
promote_pkgs(pkginfos)
¶
Iterate over pkgs and pass them to promote_pkg if not in denylist.
Returns a list of results from promote_pkg.
Source code in lambopkg/runners/autopromote.py
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
safe_read_pkg(pkginfo)
¶
Returns the contents of a pkginfo plist, or, if a parsing error occurs, None
Source code in lambopkg/runners/autopromote.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | |
runners.fix_trust_info¶
Fix ParentRecipeTrustInfo paths in AutoPkg override recipes.
Scans override recipes for ParentRecipeTrustInfo entries, resolves each parent recipe identifier to its actual filesystem path by searching Overrides/ then Recipes/, and updates the path and sha256_hash fields.
Usage
python lambopkg/runners/fix_trust_info.py [--autopkg-dir AutoPkg]
build_identifier_index(autopkg_dir)
¶
Build map of recipe Identifier -> file path.
Source code in lambopkg/runners/fix_trust_info.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |
fix_override(override_path, index)
¶
Fix trust info paths in a single override. Returns True if modified.
Source code in lambopkg/runners/fix_trust_info.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
sha256_file(path)
¶
Compute SHA-256 hash of a file.
Source code in lambopkg/runners/fix_trust_info.py
36 37 38 | |