In our university we have IT and they said students can use their repo for update or upgrade packages on Linux, for Fedora they give us this config
```
[IT-fedora]
name=Fedora $releasever - $basearch
failovermethod=priority
baseurl= Domain im Kundenauftrag registriert
enabled=1
metadata_expire=7d
repo_gpgcheck=0
type=rpm
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
skip_if_unavailable=False
[IT-updates]
name=Fedora $releasever - $basearch - Updates
failovermethod=priority
baseurl= Domain im Kundenauftrag registriert
enabled=1
repo_gpgcheck=0
type=rpm
gpgcheck=1
metadata_expire=6h
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
skip_if_unavailable=False
```
Is this safe and I can use it?
Can they put bad packages on their repo?
If I use this repo how I can check my Fedora is OK and not hacked?
Yes. Perhaps more likely, if their security is poor, they can be hacked by a bad actor who puts bad packages there.
Normally you’d be protected by the system checking that the packages are signed with Fedora’s GPG key. But your university is telling you to throw away that protection, by using repo_gpgcheck=0.Edit: no, I’m wrong, per @francismontagnac 's post you should still be protected by gpgcheck=1.