spcd_git_shunit,readme
This commit is contained in:
parent
bcc64b6af3
commit
88be2eec82
2 changed files with 10 additions and 4 deletions
13
readme.md
13
readme.md
|
@ -52,6 +52,7 @@ from various contexts of CA, CI and OCI / OS.
|
||||||
| SPCD_DNS_n | Numbered name servers | 9.9.9.9 |
|
| SPCD_DNS_n | Numbered name servers | 9.9.9.9 |
|
||||||
| SPCD_GIT_MAIN | Main Git repository | spcd |
|
| SPCD_GIT_MAIN | Main Git repository | spcd |
|
||||||
| SPCD_GIT_ROOT | Root Git repository | rwx |
|
| SPCD_GIT_ROOT | Root Git repository | rwx |
|
||||||
|
| SPCD_GIT_SHUNIT | ShUnit Git repository | shunit2 |
|
||||||
| SPCD_SSH_HOSTS | domain.tld ssh-type pub | |
|
| SPCD_SSH_HOSTS | domain.tld ssh-type pub | |
|
||||||
| SPCD_SSH_KEY | SSH private key | |
|
| SPCD_SSH_KEY | SSH private key | |
|
||||||
| SPCD_URL_ALMA | Alma repository URL | https://repo.almalinux.org |
|
| SPCD_URL_ALMA | Alma repository URL | https://repo.almalinux.org |
|
||||||
|
@ -98,18 +99,18 @@ from various contexts of CA, CI and OCI / OS.
|
||||||
## Tasks
|
## Tasks
|
||||||
|
|
||||||
* try git repo url variable first for shunit
|
* try git repo url variable first for shunit
|
||||||
* turn readme into documentation
|
|
||||||
|
|
||||||
### sh
|
### Shell
|
||||||
|
|
||||||
* fit banner to text
|
* fit banner to text
|
||||||
* review repositories handling for systems
|
* review repositories handling for systems
|
||||||
* opensuse
|
* opensuse
|
||||||
* codecs repository
|
* codecs repository
|
||||||
* disable & enable https
|
* disable & enable https
|
||||||
|
* write function to clone git repositories
|
||||||
* write unit tests
|
* write unit tests
|
||||||
|
|
||||||
### sh → py
|
### Shell → Python
|
||||||
|
|
||||||
* check file & variable sums
|
* check file & variable sums
|
||||||
* install system packages
|
* install system packages
|
||||||
|
@ -129,7 +130,7 @@ from various contexts of CA, CI and OCI / OS.
|
||||||
* activate
|
* activate
|
||||||
* relay environment module name
|
* relay environment module name
|
||||||
|
|
||||||
### py
|
### Python
|
||||||
|
|
||||||
* check
|
* check
|
||||||
* .py
|
* .py
|
||||||
|
@ -143,3 +144,7 @@ from various contexts of CA, CI and OCI / OS.
|
||||||
* actions
|
* actions
|
||||||
* includes
|
* includes
|
||||||
* write unit tests
|
* write unit tests
|
||||||
|
|
||||||
|
### Later
|
||||||
|
|
||||||
|
* turn readme into documentation
|
||||||
|
|
1
spcd.sh
1
spcd.sh
|
@ -8,6 +8,7 @@
|
||||||
[ -n "${SPCD_DNS_1}" ] || SPCD_DNS_1="9.9.9.9"
|
[ -n "${SPCD_DNS_1}" ] || SPCD_DNS_1="9.9.9.9"
|
||||||
[ -n "${SPCD_GIT_MAIN}" ] || SPCD_GIT_MAIN="spcd"
|
[ -n "${SPCD_GIT_MAIN}" ] || SPCD_GIT_MAIN="spcd"
|
||||||
[ -n "${SPCD_GIT_ROOT}" ] || SPCD_GIT_ROOT="rwx"
|
[ -n "${SPCD_GIT_ROOT}" ] || SPCD_GIT_ROOT="rwx"
|
||||||
|
[ -n "${SPCD_GIT_SHUNIT}" ] || SPCD_GIT_SHUNIT="shunit2"
|
||||||
[ -n "${SPCD_URL_PYTHON}" ] || SPCD_URL_PYTHON="https://pypi.org/simple"
|
[ -n "${SPCD_URL_PYTHON}" ] || SPCD_URL_PYTHON="https://pypi.org/simple"
|
||||||
|
|
||||||
# main
|
# main
|
||||||
|
|
Loading…
Reference in a new issue