generated from smedev/Template-for-SMEServer-Core-Package
- set module php 84 [SME: 12952] - remove openfusion repo [SME: 12882]
15 lines
323 B
Python
15 lines
323 B
Python
#!/usr/bin/python3
|
|
import dnf
|
|
|
|
base = dnf.Base()
|
|
base.read_all_repos()
|
|
base.fill_sack()
|
|
|
|
module_base = dnf.module.module_base.ModuleBase(base)
|
|
module_base.switch_to(['php:remi-8.4'])
|
|
module_base.switch_to(['perl:5.26'])
|
|
module_base.switch_to(['python36:3.6'])
|
|
module_base.switch_to(['mariadb:10.5'])
|
|
|
|
base.do_transaction()
|