Skip to content

Commit 33978b9

Browse files
authored
Merge pull request #98 from sej7278/tuxcarerepo-radar
moved to tuxcare repo from kernelcare one
2 parents a494595 + 3e55381 commit 33978b9

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

docs/radar/README.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,45 +8,44 @@ TuxCare Radar is an intelligent vulnerability scanner for Linux systems, fully i
88

99
## Installation
1010

11-
If you are not already a KernelCare or ePortal user, you will first need to install our repository configuration:
11+
First you need to install our repository configuration:
1212

1313
RPM-based distributions (AlmaLinux, RHEL etc):
1414

1515
```text
16-
cat > /etc/yum.repos.d/kernelcare.repo <<EOL
17-
[kernelcare]
18-
name=kernelcare
19-
baseurl=https://repo.cloudlinux.com/kernelcare/\$releasever/\$basearch
16+
cat > /etc/yum.repos.d/tuxcare-radar.repo <<EOL
17+
[tuxcare-radar]
18+
name=TuxCare Radar
19+
baseurl=https://repo.tuxcare.com/radar/\$releasever/\$basearch/
2020
enabled=1
2121
gpgcheck=1
22-
gpgkey=https://repo.cloudlinux.com/kernelcare/RPM-GPG-KEY-KernelCare
22+
skip_if_unavailable=1
23+
gpgkey=https://repo.tuxcare.com/radar/RPM-GPG-KEY-TuxCare
2324
EOL
2425
```
2526

26-
For APT-based distributions (Debian, Ubuntu etc):
27+
APT-based distributions (Debian, Ubuntu etc):
2728

2829
```text
29-
curl -s https://repo.cloudlinux.com/kernelcare/kernelcare.gpg -o /usr/share/keyrings/kcare.gpg
30+
curl -s https://repo.tuxcare.com/radar/tuxcare.gpg -o /usr/share/keyrings/tuxcare.gpg
3031
3132
source /etc/os-release
3233
33-
if [ "$ID" = "debian" ]; then export VERSION_CODENAME=kcare; fi
34-
3534
printf '%s' \
36-
"deb [signed-by=/usr/share/keyrings/kcare.gpg] " \
37-
"https://repo.cloudlinux.com/kernelcare/kernelcare-$ID/$VERSION_ID " \
38-
"$VERSION_CODENAME main" > /etc/apt/sources.list.d/kcare.list
35+
"deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/tuxcare.gpg] " \
36+
"https://repo.tuxcare.com/radar/$ID/$VERSION_ID " \
37+
"stable main" > /etc/apt/sources.list.d/tuxcare-radar.list
3938
```
4039

41-
If you are already a KernelCare user or have followed the above repo instructions, you should be able to install Radar as simply as running one of the following:
40+
You should now be able to install Radar as simply as running one of the following:
4241

4342
RPM-based distributions (AlmaLinux, RHEL etc):
4443

4544
```text
4645
yum install tuxcare-radar
4746
```
4847

49-
For APT-based distributions (Debian, Ubuntu etc):
48+
APT-based distributions (Debian, Ubuntu etc):
5049

5150
```text
5251
apt-get install tuxcare-radar
@@ -83,4 +82,3 @@ su -s /bin/bash nobody -c "tuxcare-radar --config /etc/tuxcare-radar/radar.yaml"
8382
```
8483

8584
Then visit [https://radar.tuxcare.com](https://radar.tuxcare.com/) to view the results.
86-

0 commit comments

Comments
 (0)