diff options
author | RPKI Documentation Robot <docbot@rpki.net> | 2013-05-30 18:00:15 +0000 |
---|---|---|
committer | RPKI Documentation Robot <docbot@rpki.net> | 2013-05-30 18:00:15 +0000 |
commit | 0236cefb76a0bf42f67a9fb2a4707c166e31adfb (patch) | |
tree | 5f93528be6a5247f6f50b7067401053178f5d900 /doc/doc.RPKI.Installation.FreeBSDPorts | |
parent | d2d9b64591ad7d50c0a9248229b70b11041c685a (diff) |
Automatic pull of documentation from Wiki.
svn path=/trunk/; revision=5337
Diffstat (limited to 'doc/doc.RPKI.Installation.FreeBSDPorts')
-rw-r--r-- | doc/doc.RPKI.Installation.FreeBSDPorts | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/doc/doc.RPKI.Installation.FreeBSDPorts b/doc/doc.RPKI.Installation.FreeBSDPorts new file mode 100644 index 00000000..2e1a3eed --- /dev/null +++ b/doc/doc.RPKI.Installation.FreeBSDPorts @@ -0,0 +1,51 @@ +****** Installation Using FreeBSD Ports ****** + +Port skeletons are available for FreeBSD from download.rpki.net. To use these, +you need to download the port skeletons then run them using your favorite +FreeBSD port installation tool. + +***** Manual Download ***** + +To download the port skeletons manually and install from them, do something +like this: + + for port in rpki-rp rpki-ca + do + fetch http://download.rpki.net/FreeBSD_Packages/${port}-port.tgz + tar xf ${port}-port.tgz + cd ${port} + make install + cd .. + rm -rf ${port} + done + +To upgrade, perform the same steps. + +After performing initial installation, you should customize the default +rpki.conf for your environment as necessary. In particular, you want to change +handle and rpkid_server_host. There are obsessively detailed instructions. + + emacs /usr/local/etc/rpki.conf + +Again, you want to change handle and rpkid_server_host at the minimum. + +***** Automated Download and Install with portmaster ***** + +There's a script you can use to automate the download steps above and perform +the updates using portmaster. First, download the script: + + fetch http://download.rpki.net/FreeBSD_Packages/rpki-portmaster.sh + +Then, to install or upgrade, just execute the script: + + sh rpki-portmaster.sh + +As with manual download (above) you should customize rpki.conf after initial +installation. + +***** Automated Download and Install with portupgrade ***** + +In theory, it should be possible to perform the same kind of automation using +portupgrade as the script mentioned above performs using portmaster. We haven't +yet figured out the steps to configure portupgrade to do this. When we do, +we'll post that information here; if you do first, please tell us. |