aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-07-11 12:58:33 +0200
committerDanilo M. <danix@danix.xyz>2026-07-11 12:58:33 +0200
commitb6d1b8bd5249b9b406d9a4bb40c8d088801d8746 (patch)
tree56228807e97177b7d4ab2a85a9bd5076afde7b26
parent14677f3814d2eaf711955a918b7ee1afc0a3ad7f (diff)
downloadslackware-pentesting-suite-b6d1b8bd5249b9b406d9a4bb40c8d088801d8746.tar.gz
slackware-pentesting-suite-b6d1b8bd5249b9b406d9a4bb40c8d088801d8746.zip
README: drop mksboarchive section
It's just a maintainer tool, not part of what this project is about. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
-rw-r--r--README.md19
1 files changed, 0 insertions, 19 deletions
diff --git a/README.md b/README.md
index e7fa5b2..8231733 100644
--- a/README.md
+++ b/README.md
@@ -77,22 +77,3 @@ cp .extras/hooks/* .git/hooks/ && chmod 0755 .git/hooks/{pre,post}-commit
(`SBo/<package>.tar.gz`) for any added or updated package. To answer the
prompt non-interactively, set `SBO_ARCHIVE=yes` or `SBO_ARCHIVE=no` in the
environment.
-
-## Building an SBo archive on demand
-
-`.extras/mksboarchive <package>` builds the same `<package>.tar.gz` SBo
-submission tarball the post-commit hook produces, but on demand by name
-rather than at commit time:
-
-```bash
-.extras/mksboarchive netexec # writes ./netexec.tar.gz
-OUTPUT=/tmp .extras/mksboarchive webshells # writes /tmp/webshells.tar.gz
-```
-
-Run it from the repo root: it looks for a `<package>/<package>.SlackBuild`
-below the current directory, removes any `sbodl` source symlinks from the
-package directory first (so they never leak into the tarball), then archives
-the directory. The output directory defaults to the current working directory
-and can be overridden with the `OUTPUT` environment variable. This means it
-works the same whether you run `.extras/mksboarchive` or an installed copy
-(e.g. in `~/bin`), as long as you are in the repo root.