From c87108f0b5fcb2834747c2a167ab2cb4a278dc17 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 3 Aug 2019 09:27:22 -0300 Subject: Updates project metadata --- ChangeLog | 0 Makefile | 47 ----------------------------------------------- README.md | 6 ++++-- TODO.md | 2 -- 4 files changed, 4 insertions(+), 51 deletions(-) delete mode 100644 ChangeLog delete mode 100644 Makefile delete mode 100644 TODO.md diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e69de29..0000000 diff --git a/Makefile b/Makefile deleted file mode 100644 index 6dbbd98..0000000 --- a/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# -# Global Makefile - https://templater.fluxo.info -# -# This Makefile contains basic, common targets and also includes -# any Makefile.* available in the current folder. -# - -# Port to serve content -HTTP_PORT="8000" -HTTP_SERVER="SimpleHTTPServer" - -# Set CONTAINER based in what we have available in the system -# This variable can be user in other, included Makefiles to handle virtualization tasks -ifeq ($(shell which kvmx > /dev/null && test -s kvmxfile && echo yes), yes) - CONTAINER = kvmx -else ifeq ($(shell which vagrant > /dev/null && test -s Vagrantfile && echo yes), yes) - CONTAINER = vagrant -else ifeq ($(shell which docker > /dev/null && test -s Dockerfile && echo yes), yes) - CONTAINER = docker -else - CONTAINER = '' -endif - -# See http://unix.stackexchange.com/questions/32182/simple-command-line-http-server#32200 -# http://php.net/manual/en/features.commandline.webserver.php -serve: - @if [ "$(HTTP_SERVER)" = "SimpleHTTPServer" ]; then python -m SimpleHTTPServer $(HTTP_PORT); fi - @if [ "$(HTTP_SERVER)" = "ssi_server" ]; then PYTHONDONTWRITEBYTECODE=0 ssi_server.py $(HTTP_PORT); fi - @if [ "$(HTTP_SERVER)" = "http.server" ]; then python3 -m http.server $(HTTP_PORT); fi - @if [ "$(HTTP_SERVER)" = "php" ]; then php -S localhost:$(HTTP_PORT); fi - -# Configure a git post-receive hook -post_receive: - git config receive.denyCurrentBranch ignore - test -s bin/post-receive && cd .git/hooks && ln -sf ../../bin/post-receive - -# Process any other Makefile whose filename matches Makefile.* -# See https://www.gnu.org/software/make/manual/html_node/Include.html -# -# Some of those files might even contain local customizations/overrides -# that can be .gitignore'd, like a Makefile.local for example. --include Makefile.* - -# Customization examples can be as simple as setting variables: -#CONTAINER = vagrant -#CONTAINER = docker -#DESTDIR ?= vendor diff --git a/README.md b/README.md index a9ac93d..2fc4813 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -icecast -======= +Icecast2 module for Puppet +========================== + +A simple "package, config file, service" module. diff --git a/TODO.md b/TODO.md deleted file mode 100644 index 74e5cc0..0000000 --- a/TODO.md +++ /dev/null @@ -1,2 +0,0 @@ -TODO -==== -- cgit v1.2.3