diff options
author | dvl <dvl@FreeBSD.org> | 2017-07-16 22:08:51 +0800 |
---|---|---|
committer | dvl <dvl@FreeBSD.org> | 2017-07-16 22:08:51 +0800 |
commit | 3410a6b8974664ddc1ea02ac9c190ae5f7ef538b (patch) | |
tree | 55fbf3dad4b0e98340ce530ad71ee0b8ab682dcc /sysutils | |
parent | 2091edc1f89f69b018663fc30e7705f696d8fb3c (diff) | |
download | freebsd-ports-gnome-3410a6b8974664ddc1ea02ac9c190ae5f7ef538b.tar.gz freebsd-ports-gnome-3410a6b8974664ddc1ea02ac9c190ae5f7ef538b.tar.zst freebsd-ports-gnome-3410a6b8974664ddc1ea02ac9c190ae5f7ef538b.zip |
Improve the pkg-message now that we install multiple scripts.
Bump PORTREVISION
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/anvil/Makefile | 1 | ||||
-rw-r--r-- | sysutils/anvil/files/pkg-message.in | 42 |
2 files changed, 33 insertions, 10 deletions
diff --git a/sysutils/anvil/Makefile b/sysutils/anvil/Makefile index af5abab8f90b..51379301dac7 100644 --- a/sysutils/anvil/Makefile +++ b/sysutils/anvil/Makefile @@ -2,6 +2,7 @@ PORTNAME= anvil PORTVERSION= 0.0.8 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= dvl@FreeBSD.org diff --git a/sysutils/anvil/files/pkg-message.in b/sysutils/anvil/files/pkg-message.in index 6d119d894080..e61a41c144f8 100644 --- a/sysutils/anvil/files/pkg-message.in +++ b/sysutils/anvil/files/pkg-message.in @@ -1,19 +1,39 @@ -After installing anvil, this is a short checklist of things to do: -* adjust anvil.conf +**************************************************************************** -* run 'cert-puller -s' to see the visudo settings you need +After installing anvil, this is a short checklist of things to do, depending +on which tools are using. -* adjust the service configuration files if cert filenames are different +For cert-puller: -* By default, anvil uses: + * adjust /usr/local/etc/anvil/cert-puller.conf - * example.org.fullchain.cer - * example.org.key + * run 'cert-puller -s' to see the visudo settings you need -* anvil does not distribute .key files. Do that manually. + * adjust the service configuration files (e.g. httpd.conf) if cert filenames + are different from defaults. By default, anvil uses: -* install the crontab for anvil: sudo crontab -e -u anvil: + * example.org.fullchain.cer + * example.org.key + + * anvil does not distribute .key files. Do that manually. + + * install the crontab for anvil: sudo crontab -e -u anvil: + +### +# use /bin/sh to run commands, overriding the default set by cron +SHELL=/bin/sh +# mail any output to here, no matter whose crontab this is +MAILTO=you@example.org + +7 13 * * * /usr/local/bin/cert-puller +### + +For cert-shifter: + + * adjust /usr/local/etc/anvil/cert-shifter.conf + + * install the crontab: ### # use /bin/sh to run commands, overriding the default set by cron @@ -21,6 +41,8 @@ SHELL=/bin/sh # mail any output to here, no matter whose crontab this is MAILTO=you@example.org -7 13 * * * %%PREFIX%%/bin/cert-puller +19 20 * * * /usr/local/bin/cert-shifter ### +**************************************************************************** + |