forked from sig_core/toolkit
10 lines
301 B
Bash
10 lines
301 B
Bash
#!/bin/bash
|
|
set -o pipefail
|
|
{{ import_gpg_cmd }} | tee -a {{ sync_log }}
|
|
{{ arch_force_cp }} | tee -a {{ sync_log }}
|
|
{{ dnf_plugin_cmd }} | tee -a {{ sync_log }}
|
|
sed -i 's/enabled=1/enabled=0/g' /etc/yum.repos.d/*.repo
|
|
{{ sync_cmd }} | tee -a {{ sync_log }}
|
|
|
|
# {{ check_cmd }} | tee -a {{ sync_log }}
|