mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-17 10:41:27 +00:00
8 lines
301 B
Bash
8 lines
301 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
LOG=/tmp/sync_os-autoinst-distri-rocky.sh.log
|
||
|
date -Isec > "${LOG}"
|
||
|
|
||
|
(cd /var/lib/openqa/tests/rocky && git checkout main && git fetch -p && git pull) >> "${LOG}" 2>&1
|
||
|
(cd /var/lib/openqa/tests/rocky && ./fifloader.py -u -l templates.fif.json templates-updates.fif.json) >> "${LOG}" 2>&1
|