8000 Remove duplicated words by longkb · Pull Request #4021 · rkt/rkt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Feb 24, 2020. It is now read-only.

Remove duplicated words #4021

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/subcommands/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ In the following example, the CPU isolator is defined to 750 milli-cores and the

## Overriding User/Group

Application images must specify the username/group or the UID/GID the app is to be run as as specified in the [Image Manifest Schema][image-manifest-schema]. The user/group can be overridden by rkt using the `--user` and `--group` flags:
Application images must specify the username/group or the UID/GID the app is to be run as specified in the [Image Manifest Schema][image-manifest-schema]. The user/group can be overridden by rkt using the `--user` and `--group` flags:

```
# rkt --insecure-options=image run docker://busybox --user=1000 --group=100 --exec id
Expand Down
2 changes: 1 addition & 1 deletion pkg/pod/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func NewPod(dataDir string) (*Pod, error) {
return nil, err
}

// At this point we we have:
// At this point we have:
// /var/lib/rkt/pods/prepare/$uuid << exclusively locked to indicate "preparing"

return p, nil
Expand Down
2 changes: 1 addition & 1 deletion rkt/image/httpops.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type httpOps struct {
}

// DownloadSignature takes an asc instance and tries to get the
// signature. If the remote server asked to to defer the download,
// signature. If the remote server asked to defer the download,
// this function will return true and no error and no file.
func (o *httpOps) DownloadSignature(a *asc) (readSeekCloser, bool, error) {
ensureLogger(o.Debug)
Expand Down
0