special-instructions-for-rhel-fedora-centos-and-others command is incorrect
Created by: ben-alkov
Describe the issue
The command in "special-instructions-for-rhel-fedora-centos-and-others" is incorrect
Where is the issue located?
Suggested resolution
chown
has no -t
option - you want chcon
to fix the selinux context:
- mkdir -p ~/.sourcegraph/config ~/.sourcegraph/data && chown -R -t svirt_sandbox_file_t ~/.sourcegraph/config ~/.sourcegraph/data
+ mkdir -p ~/.sourcegraph/config ~/.sourcegraph/data && chcon -R -t svirt_sandbox_file_t ~/.sourcegraph/config ~/.sourcegraph/data