Post edits

This commit is contained in:
2020-01-26 10:49:58 -05:00
parent b1f816924a
commit e64bf4f377

View File

@@ -72,6 +72,7 @@ exit $?
### Configuration ### Configuration
#### run-with-podman.sh #### run-with-podman.sh
I created the following script to handle container execution depending on a few arguments. You can download it and place it in your path here: I created the following script to handle container execution depending on a few arguments. You can download it and place it in your path here:
@@ -82,7 +83,7 @@ Download [run-with-podman.sh](https://git.bryanroessler.com/bryan/run-with-podma
wget -q -O "${HOME}/.local/bin/run-with-podman" "https://git.bryanroessler.com/bryan/run-with-podman/src/master/run-with-podman.sh" wget -q -O "${HOME}/.local/bin/run-with-podman" "https://git.bryanroessler.com/bryan/run-with-podman/src/master/run-with-podman.sh"
``` ```
Copypasta: If you prefer to copy-paste:
```bash ```bash
#!/usr/bin/env bash #!/usr/bin/env bash
@@ -188,8 +189,7 @@ function parse_input () {
parse_input "${@}" parse_input "${@}"
# Sanitize filename for unique container name # Sanitize filename for unique container name
CLEAN="${FILE_ACTIVE//_/}" && CLEAN="${CLEAN// /_}" && CLEAN="${FILE_ACTIVE//_/}" && CLEAN="${CLEAN//[^a-zA-Z0-9]/}" && CLEAN="${CLEAN,,}"
CLEAN="${CLEAN//[^a-zA-Z0-9_]/}" && CLEAN="${CLEAN,,}"
# Allow container access to the pwd # Allow container access to the pwd
chcon -t container_file_t -R "${FILE_ACTIVE_PATH}" chcon -t container_file_t -R "${FILE_ACTIVE_PATH}"