├── .gitignore ├── README.md ├── Vagrantfile ├── docker ├── alma9 │ └── Dockerfile ├── centos8 │ └── Dockerfile └── ubuntu2004 │ └── Dockerfile ├── recipes ├── collector-sidecar │ ├── recipe.rb │ ├── recipe32.rb │ ├── recipearmv7.rb │ └── sidecar-example.yml ├── data.yml ├── graylog-datanode │ ├── files │ │ ├── environment │ │ ├── installation-source.deb.sh │ │ ├── installation-source.rpm.sh │ │ ├── post-install │ │ ├── post-uninstall │ │ ├── pre-install │ │ ├── pre-uninstall │ │ └── systemd.service │ ├── patches │ │ ├── datanode.conf.patch │ │ └── log4j2.xml.patch │ └── recipe.rb ├── graylog-enterprise │ └── recipe.rb ├── graylog-illuminate │ ├── files │ │ ├── post-install │ │ └── post-uninstall │ └── recipe.rb ├── graylog-repository │ ├── files │ │ ├── deb │ │ │ └── graylog-archive-keyring.gpg │ │ └── rpm │ │ │ └── RPM-GPG-KEY-graylog │ ├── rebuild.sh │ └── recipe.rb ├── graylog-server │ ├── files │ │ ├── deb │ │ │ └── logrotate │ │ ├── environment │ │ ├── graylog-server.sh │ │ ├── installation-source.deb.sh │ │ ├── installation-source.rpm.sh │ │ ├── log4j2.xml │ │ ├── needrestart.conf │ │ ├── post-install │ │ ├── post-uninstall │ │ ├── pre-install │ │ ├── pre-uninstall │ │ └── systemd.service │ ├── patches │ │ └── graylog-server.conf.patch │ ├── rebuild.sh │ └── recipe.rb ├── graylog-sidecar-repository │ ├── files │ │ ├── deb │ │ │ └── graylog-sidecar-archive-keyring.gpg │ │ └── rpm │ │ │ └── RPM-GPG-KEY-graylog-sidecar │ ├── rebuild.sh │ └── recipe.rb └── tools.rb └── scripts ├── build-pkg ├── create-snapshot-data.py ├── jenkins.groovy ├── sidecar-packages.groovy ├── templates └── data.snapshot.yml.j2 ├── update_package.py └── update_sha.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/Vagrantfile -------------------------------------------------------------------------------- /docker/alma9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/docker/alma9/Dockerfile -------------------------------------------------------------------------------- /docker/centos8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/docker/centos8/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/docker/ubuntu2004/Dockerfile -------------------------------------------------------------------------------- /recipes/collector-sidecar/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/collector-sidecar/recipe.rb -------------------------------------------------------------------------------- /recipes/collector-sidecar/recipe32.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/collector-sidecar/recipe32.rb -------------------------------------------------------------------------------- /recipes/collector-sidecar/recipearmv7.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/collector-sidecar/recipearmv7.rb -------------------------------------------------------------------------------- /recipes/collector-sidecar/sidecar-example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/collector-sidecar/sidecar-example.yml -------------------------------------------------------------------------------- /recipes/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/data.yml -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/files/environment -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/installation-source.deb.sh: -------------------------------------------------------------------------------- 1 | GRAYLOG_DATANODE_INSTALLATION_SOURCE="deb" 2 | -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/installation-source.rpm.sh: -------------------------------------------------------------------------------- 1 | GRAYLOG_DATANODE_INSTALLATION_SOURCE="rpm" 2 | -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/files/post-install -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/post-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/files/post-uninstall -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/pre-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/files/pre-install -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/pre-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/files/pre-uninstall -------------------------------------------------------------------------------- /recipes/graylog-datanode/files/systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/files/systemd.service -------------------------------------------------------------------------------- /recipes/graylog-datanode/patches/datanode.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/patches/datanode.conf.patch -------------------------------------------------------------------------------- /recipes/graylog-datanode/patches/log4j2.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/patches/log4j2.xml.patch -------------------------------------------------------------------------------- /recipes/graylog-datanode/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-datanode/recipe.rb -------------------------------------------------------------------------------- /recipes/graylog-enterprise/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-enterprise/recipe.rb -------------------------------------------------------------------------------- /recipes/graylog-illuminate/files/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-illuminate/files/post-install -------------------------------------------------------------------------------- /recipes/graylog-illuminate/files/post-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-illuminate/files/post-uninstall -------------------------------------------------------------------------------- /recipes/graylog-illuminate/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-illuminate/recipe.rb -------------------------------------------------------------------------------- /recipes/graylog-repository/files/deb/graylog-archive-keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-repository/files/deb/graylog-archive-keyring.gpg -------------------------------------------------------------------------------- /recipes/graylog-repository/files/rpm/RPM-GPG-KEY-graylog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-repository/files/rpm/RPM-GPG-KEY-graylog -------------------------------------------------------------------------------- /recipes/graylog-repository/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-repository/rebuild.sh -------------------------------------------------------------------------------- /recipes/graylog-repository/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-repository/recipe.rb -------------------------------------------------------------------------------- /recipes/graylog-server/files/deb/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/deb/logrotate -------------------------------------------------------------------------------- /recipes/graylog-server/files/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/environment -------------------------------------------------------------------------------- /recipes/graylog-server/files/graylog-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/graylog-server.sh -------------------------------------------------------------------------------- /recipes/graylog-server/files/installation-source.deb.sh: -------------------------------------------------------------------------------- 1 | GRAYLOG_INSTALLATION_SOURCE="deb" 2 | -------------------------------------------------------------------------------- /recipes/graylog-server/files/installation-source.rpm.sh: -------------------------------------------------------------------------------- 1 | GRAYLOG_INSTALLATION_SOURCE="rpm" 2 | -------------------------------------------------------------------------------- /recipes/graylog-server/files/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/log4j2.xml -------------------------------------------------------------------------------- /recipes/graylog-server/files/needrestart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/needrestart.conf -------------------------------------------------------------------------------- /recipes/graylog-server/files/post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/post-install -------------------------------------------------------------------------------- /recipes/graylog-server/files/post-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/post-uninstall -------------------------------------------------------------------------------- /recipes/graylog-server/files/pre-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/pre-install -------------------------------------------------------------------------------- /recipes/graylog-server/files/pre-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/pre-uninstall -------------------------------------------------------------------------------- /recipes/graylog-server/files/systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/files/systemd.service -------------------------------------------------------------------------------- /recipes/graylog-server/patches/graylog-server.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/patches/graylog-server.conf.patch -------------------------------------------------------------------------------- /recipes/graylog-server/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/rebuild.sh -------------------------------------------------------------------------------- /recipes/graylog-server/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-server/recipe.rb -------------------------------------------------------------------------------- /recipes/graylog-sidecar-repository/files/deb/graylog-sidecar-archive-keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-sidecar-repository/files/deb/graylog-sidecar-archive-keyring.gpg -------------------------------------------------------------------------------- /recipes/graylog-sidecar-repository/files/rpm/RPM-GPG-KEY-graylog-sidecar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-sidecar-repository/files/rpm/RPM-GPG-KEY-graylog-sidecar -------------------------------------------------------------------------------- /recipes/graylog-sidecar-repository/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-sidecar-repository/rebuild.sh -------------------------------------------------------------------------------- /recipes/graylog-sidecar-repository/recipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/graylog-sidecar-repository/recipe.rb -------------------------------------------------------------------------------- /recipes/tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/recipes/tools.rb -------------------------------------------------------------------------------- /scripts/build-pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/build-pkg -------------------------------------------------------------------------------- /scripts/create-snapshot-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/create-snapshot-data.py -------------------------------------------------------------------------------- /scripts/jenkins.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/jenkins.groovy -------------------------------------------------------------------------------- /scripts/sidecar-packages.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/sidecar-packages.groovy -------------------------------------------------------------------------------- /scripts/templates/data.snapshot.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/templates/data.snapshot.yml.j2 -------------------------------------------------------------------------------- /scripts/update_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/update_package.py -------------------------------------------------------------------------------- /scripts/update_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Graylog2/fpm-recipes/HEAD/scripts/update_sha.py --------------------------------------------------------------------------------