Manages a local copy of the HardenedBSD ports tree
Find a file
2023-01-22 06:10:37 -03:00
bin bin/install-file: pass multiple files to 'install' cmd 2023-01-22 06:10:37 -03:00
libexec/portzap bin/install-file: pass multiple files to 'install' cmd 2023-01-22 06:10:37 -03:00
.projectile First commit 2023-01-14 14:30:29 -03:00
README.md Rename "unpack" command to "install" 2023-01-19 10:23:27 -03:00
VERSION v0.2.0 2023-01-20 23:47:44 -03:00

About

portzap is a simple bourne shell script that takes care of keeping up to date with the HardenedBSD ports collection.

The HardenedBSD ports collection is maintained as a git repository, and portzap allows the repository to be cloned (and updated) using a regular user account. The unpacking of the repository to /usr/ports is also supported but must be performed by root.

Usage

  • portzap init
    This command should be run as root.
    The command creates the _portzap user / group, and the directory /home/_portzap.

  • portzap clone
    This command should be run by a user account that is a member of the _portzap group.
    The command clones HardenedBSD's ports collection to /home/_portzap/ports.

  • portzap pull
    This command should be run by a user account that is a member of the _portzap group.
    The command updates an existing repository previously cloned with portzap clone.

  • portzap install
    This command should be run as root.
    The command installs /home/_portzap/ports into /usr/ports.

Sources