diff options
author | Peter Hunt <pehunt@redhat.com> | 2019-05-17 18:02:29 -0400 |
---|---|---|
committer | Peter Hunt <pehunt@redhat.com> | 2019-05-18 19:33:12 -0400 |
commit | 900dd3e6333fe68838214e05f19399afd8887cf2 (patch) | |
tree | a42591e441612e5107bd471423de319d2b9cb5ee /install.md | |
parent | 00ecbfc1315a62940202574fb45f2ae2f4c48b63 (diff) | |
download | podman-900dd3e6333fe68838214e05f19399afd8887cf2.tar.gz podman-900dd3e6333fe68838214e05f19399afd8887cf2.tar.bz2 podman-900dd3e6333fe68838214e05f19399afd8887cf2.zip |
Fixup conmon documentation
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/install.md b/install.md index 82dd4c36a..a278cb4ba 100644 --- a/install.md +++ b/install.md @@ -188,13 +188,12 @@ export PATH=$GOPATH/bin:$PATH #### conmon The latest version of `conmon` is expected to be installed on the system. Conmon is used to monitor OCI Runtimes. -To build from source, use the following (if not already executed above, run `export GOPATH=~/go && mkdir -p $GOPATH`): +To build from source, use the following: ```bash -git clone https://github.com/cri-o/cri-o $GOPATH/src/github.com/cri-o/cri-o -cd $GOPATH/src/github.com/cri-o/cri-o -mkdir bin -make bin/conmon +git clone https://github.com/containers/conmon +cd conmon +make sudo install -D -m 755 bin/conmon /usr/libexec/podman/conmon ``` |