Add missing `systemctl` step for running `cri-o` (#17926)
After installing `cri-o`, we must run `systemctl daemon-reload` before trying to run `systemctl start crio`. Otherwise, `systemd` doesn't know about the crio configuration. Similar instructions already exist for installing docker - this diff adds these instructions for crio.
This commit is contained in:
parent
29ca5ea07b
commit
832371281d
|
|
@ -200,6 +200,7 @@ yum install --nogpgcheck cri-o
|
|||
### Start CRI-O
|
||||
|
||||
```
|
||||
systemctl daemon-reload
|
||||
systemctl start crio
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue