diff options
Diffstat (limited to 'security/osiris')
-rw-r--r-- | security/osiris/Makefile | 69 | ||||
-rw-r--r-- | security/osiris/distinfo | 2 | ||||
-rw-r--r-- | security/osiris/pkg-descr | 12 | ||||
-rw-r--r-- | security/osiris/pkg-install | 73 | ||||
-rw-r--r-- | security/osiris/pkg-message | 15 | ||||
-rw-r--r-- | security/osiris/pkg-plist | 30 |
6 files changed, 0 insertions, 201 deletions
diff --git a/security/osiris/Makefile b/security/osiris/Makefile deleted file mode 100644 index a8c02f488def..000000000000 --- a/security/osiris/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -# $FreeBSD$ - -PORTNAME= osiris -PORTVERSION= 4.2.3 -PORTREVISION= 4 -CATEGORIES= security -MASTER_SITES= http://osiris.shmoo.com/data/ \ - http://redundancy.redundancy.org/mirror/ - -MAINTAINER= ports@FreeBSD.org -COMMENT= Shmoo client/server host integrity checker - -BROKEN= unfetchable -DEPRECATED= Unfetchable, unmaintained -EXPIRATION_DATE= 2019-10-16 -BROKEN_FreeBSD_12= undefined symbol: SHA_Init -BROKEN_FreeBSD_13= undefined symbol: SHA_Init - -GNU_CONFIGURE= yes -USES= readline ssl - -OPTIONS_DEFINE= OSIRISMD OSIRISD PRINTDB CLI -OPTIONS_DEFAULT= OSIRISD -OPTIONS_SUB= yes - -OSIRISMD_DESC= Management daemon -OSIRISD_DESC= Scan agent -PRINTDB_DESC= Database print tool -CLI_DESC= Management CLI - -post-build-PRINTDB-on: - cd ${WRKSRC}/src/tools && ${MAKE_CMD} - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/osiris - -do-install-CLI-on: - ${INSTALL_PROGRAM} ${WRKSRC}/src/cli/osiris ${STAGEDIR}${PREFIX}/sbin - -do-install-PRINTDB-on: - ${INSTALL_PROGRAM} ${WRKSRC}/src/tools/printdb ${STAGEDIR}${PREFIX}/bin - -do-install-OSIRISD-on: - ${SED} -e 's|@INSTALLDIR@|${PREFIX}/sbin|g' \ - -e 's|@OSIRISDIR@|${PREFIX}/osiris|g' \ - ${WRKSRC}/src/install/freebsd/osirisd.in > \ - ${WRKSRC}/src/install/freebsd/osirisd.sh - ${INSTALL_PROGRAM} ${WRKSRC}/src/osirisd/osirisd ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_SCRIPT} ${WRKSRC}/src/install/freebsd/osirisd.sh \ - ${STAGEDIR}${PREFIX}/etc/rc.d - -do-install-OSIRISMD-on: - ${SED} -e 's|@INSTALLDIR@|${PREFIX}/sbin|g' \ - -e 's|@OSIRISDIR@|${PREFIX}/osiris|g' \ - ${WRKSRC}/src/install/freebsd/osirismd.in > \ - ${WRKSRC}/src/install/freebsd/osirismd.sh - @${MKDIR} ${STAGEDIR}${PREFIX}/osiris/configs -.for os in aix bsdos darwin freebsd irix linux netbsd openbsd sunos \ - unix-generic windows2000 windowsnt windowsserver2003 windowsxp \ - wrt54g - ${INSTALL_DATA} ${WRKSRC}/src/configs/default.${os} \ - ${STAGEDIR}${PREFIX}/osiris/configs -.endfor - ${INSTALL_PROGRAM} -m 4755 ${WRKSRC}/src/osirismd/osirismd \ - ${STAGEDIR}${PREFIX}/sbin - ${INSTALL_SCRIPT} ${WRKSRC}/src/install/freebsd/osirismd.sh \ - ${STAGEDIR}${PREFIX}/etc/rc.d - -.include <bsd.port.mk> diff --git a/security/osiris/distinfo b/security/osiris/distinfo deleted file mode 100644 index 7fe395af9793..000000000000 --- a/security/osiris/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (osiris-4.2.3.tar.gz) = 94e1f28a6dc24e85efb47383126cf3bad35db8a7d47a8025e77bb6f0730c3b04 -SIZE (osiris-4.2.3.tar.gz) = 1924149 diff --git a/security/osiris/pkg-descr b/security/osiris/pkg-descr deleted file mode 100644 index 07f23e77b3ad..000000000000 --- a/security/osiris/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Osiris is a Host Integrity Management System that periodically monitors -one or more hosts for change. It maintains detailed logs of changes to -the file system, user and group lists, resident kernel modules, and -more. Osiris can be configured to email these logs to the administrator. -Hosts are periodically scanned and, if desired, the records can be -maintained for forensic purposes. Osiris keeps an administrator apprised -of possible attacks and/or nasty little trojans. The purpose here is -to isolate changes that indicate a break-in or a compromised system. -Osiris makes use of OpenSSL for encryption and authentication in all -components. - -WWW: http://osiris.shmoo.com/ diff --git a/security/osiris/pkg-install b/security/osiris/pkg-install deleted file mode 100644 index eca0e185ef1d..000000000000 --- a/security/osiris/pkg-install +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -ask() { - local question default answer - - question=$1 - default=$2 - if [ -z "${PACKAGE_BUILDING}" -a -z "${BATCH}" ]; then - read -p "${question} [${default}]? " answer - fi - echo ${answer:-${default}} -} - -yesno() { - local question default answer - - question=$1 - default=$2 - while :; do - answer=$(ask "${question}" "${default}") - case "${answer}" in - [Yy]*) return 0;; - [Nn]*) return 1;; - esac - echo "Please answer yes or no." - done -} - -make_account() { - local u g gcos - - u=$1 - g=$2 - gcos=$3 - - if pw group show "${g}" >/dev/null 2>&1; then - echo "You already have a group \"${g}\", so I will use it." - else - echo "You need a group \"${g}\"." - if which -s pw && yesno "Would you like me to create it" y - then - pw groupadd ${g} || exit - echo "Done." - else - echo "Please create it, and try again." - exit 1 - fi - fi - - if pw user show "${u}" >/dev/null 2>&1; then - echo "You already have a user \"${u}\", so I will use it." - else - echo "You need a user \"${u}\"." - if which -s pw && yesno "Would you like me to create it" y - then - pw useradd ${u} -g ${g} -h - -d /nonexistent -s /sbin/nologin -c "${gcos}" || exit - echo "Done." - else - echo "Please create it, and try again." - exit 1 - fi - fi -} - -case $2 in - -PRE-INSTALL) - make_account osiris osiris "Osiris" - ;; -esac diff --git a/security/osiris/pkg-message b/security/osiris/pkg-message deleted file mode 100644 index c3df57c6f72b..000000000000 --- a/security/osiris/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ -[ -{ type: install - message: <<EOM -To start the osiris daemons at system boot, add: - -osirisd_enable="YES" - -and/or - -osirismd_enable="YES" - -to /etc/rc.conf. -EOM -} -] diff --git a/security/osiris/pkg-plist b/security/osiris/pkg-plist deleted file mode 100644 index 0042dcec27d3..000000000000 --- a/security/osiris/pkg-plist +++ /dev/null @@ -1,30 +0,0 @@ -%%CLI%%sbin/osiris -%%PRINTDB%%bin/printdb -%%OSIRISD%%sbin/osirisd -%%OSIRISMD%%@owner osiris -%%OSIRISMD%%@group osiris -%%OSIRISMD%%sbin/osirismd -%%OSIRISMD%%@owner -%%OSIRISMD%%@group -%%OSIRISD%%etc/rc.d/osirisd.sh -%%OSIRISMD%%etc/rc.d/osirismd.sh -@dir(osiris,osiris,) osiris -%%OSIRISMD%%@owner osiris -%%OSIRISMD%%@group osiris -%%OSIRISMD%%osiris/configs/default.aix -%%OSIRISMD%%osiris/configs/default.bsdos -%%OSIRISMD%%osiris/configs/default.darwin -%%OSIRISMD%%osiris/configs/default.freebsd -%%OSIRISMD%%osiris/configs/default.irix -%%OSIRISMD%%osiris/configs/default.linux -%%OSIRISMD%%osiris/configs/default.netbsd -%%OSIRISMD%%osiris/configs/default.openbsd -%%OSIRISMD%%osiris/configs/default.sunos -%%OSIRISMD%%osiris/configs/default.unix-generic -%%OSIRISMD%%osiris/configs/default.windows2000 -%%OSIRISMD%%osiris/configs/default.windowsnt -%%OSIRISMD%%osiris/configs/default.windowsserver2003 -%%OSIRISMD%%osiris/configs/default.windowsxp -%%OSIRISMD%%osiris/configs/default.wrt54g -%%OSIRISMD%%@owner -%%OSIRISMD%%@group |