From: Ian Kelling Date: Tue, 14 Feb 2017 00:00:37 +0000 (-0800) Subject: add install script, fix perms X-Git-Url: https://iankelling.org/git/?p=log-quiet;a=commitdiff_plain;h=d9bc271d0faf80847ed819cbd6f9220667ff43d8 add install script, fix perms --- diff --git a/failmail b/failmail old mode 100644 new mode 100755 diff --git a/logq-function b/logq-function old mode 100755 new mode 100644 diff --git a/setup b/setup new file mode 100755 index 0000000..44ef3f5 --- /dev/null +++ b/setup @@ -0,0 +1,72 @@ +#!/bin/bash +# Copyright (C) 2017 Ian Kelling + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -eE -o pipefail +trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR + +[[ $EUID == 0 ]] || exec sudo "$BASH_SOURCE" "$@" + +usage() { + cat <