From a731463315763cbbed174b71dfc697a84d5165b2 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Wed, 5 Apr 2017 17:27:15 -0500 Subject: [PATCH] Remove unused file. --- .../metasploitable/files/sinatra/sinatra.sh | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 chef/cookbooks/metasploitable/files/sinatra/sinatra.sh diff --git a/chef/cookbooks/metasploitable/files/sinatra/sinatra.sh b/chef/cookbooks/metasploitable/files/sinatra/sinatra.sh deleted file mode 100644 index fdceaea..0000000 --- a/chef/cookbooks/metasploitable/files/sinatra/sinatra.sh +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/sh -### BEGIN INIT INFO -# Provides: sinatra -# Required-Start: $remote_fs $syslog -# Required-Stop: $remote_fs $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: Sinatra -# Description: This file starts the sinatra service -# -### END INIT INFO - -case "$1" in - start) - /opt/sinatra/start.sh - ;; - *) - echo "Usage: start {start}" >&2 - exit 3 - ;; -esac