## About portzap is a utility that manages a local copy of the [HardenedBSD ports tree](https://git.HardenedBSD.org/HardenedBSD/ports). The copy of the ports tree is maintained by members of the `_portzap` group, and the copy of the ports tree can be installed into `/usr/ports/` by root. ## CLI ### CLI: setup-portzap `setup-portzap` should be run after installing portzap for the first time.
There is no harm in running `setup-portzap` multiple times: # Add the '_portzap' user, group and home directory # This command requires root privileges root@localhost# setup-portzap ### CLI: group The following commands are delegated to the `_portzap` user and restricted to members of the `_portzap` group. The restrictions are enforced by portzap and to a lesser extent by [doas(1)](https://man.openbsd.org/doas): * **portzap clone**
Clone the HardenedBSD ports tree into `/home/_portzap/ports/`
* **portzap pull**
Pull updates into `/home/_portzap/ports/`
* **portzap checkout**
Checkout a branch other than the default: `hardenedbsd/main`
* **portzap sh**
Run `/bin/sh` within `/home/_portzap/ports/`
### CLI: superuser The following commands are restricted to root.
The restrictions are enforced by portzap: * **portzap rm**
Remove the contents of `/usr/ports/` and `/home/_portzap/ports/`
* **portzap install**
Install `/home/_portzap/ports/` into `/usr/ports/`
## Environment * __$PORTZAP\_CLONEURL__
The URL of a git repository
Default: https://git.HardenedBSD.org/HardenedBSD/ports.git * __$PORTZAP\_INSTALLDIR__
The directory where the ports collection will be installed
Default: /usr/ports/ ## Install portzap is available [from the HardenedBSD ports tree](https://git.HardenedBSD.org/HardenedBSD/ports/-/tree/HardenedBSD/main/hardenedbsd/portzap). `pkg install portzap` should work too but expect slower updates. The most recent version of portzap can be installed via git: # Clone user@localhost$ git clone https://git.hardenedbsd.org/0x1eef/portzap.git user@localhost$ cd portzap # Install root@localhost# make install root@localhost# setup-portzap # Add user to '_portzap' group root@localhost# pw groupmod -n _portzap -m ## Requirements * [doas](https://man.openbsd.org/doas) * [git](https://www.man7.org/linux/man-pages/man1/git.1.html) ## Sources * [GitHub](https://github.com/0x1eef/portzap) * [GitLab](https://gitlab.com/0x1eef/portzap) * [git.HardenedBSD.org/@0x1eef](https://git.HardenedBSD.org/0x1eef/portzap) * [brew.bsd.cafe/@0x1eef](https://brew.bsd.cafe/0x1eef/portzap) ## License [BSD Zero Clause](https://choosealicense.com/licenses/0bsd/)
See [LICENSE](./LICENSE)