From d31d19e80cf1e188c084afdb831b737694e9cf05 Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Sat, 4 Jan 2014 15:54:03 -0800 Subject: [PATCH] Added a license and small bug fix --- LICENSE | 21 +++++++++++++++++++++ install.sh | 5 ++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c47b17c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Tony Grosinger + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/install.sh b/install.sh index 5c77b6c..bc65c34 100755 --- a/install.sh +++ b/install.sh @@ -49,7 +49,10 @@ function performSetup() { pushd ${home}; echo "Adding id_rsa.pub to authorized keys if necessary" - if [ ! -e ".ssh/authorized_keys" ] ; then + if [ ! -d .ssh ]; then + mkdir .ssh + fi + if [ ! -e ".ssh/authorized_keys" ]; then cp ${REPO_DIR}/.ssh/id_rsa.pub .ssh/authorized_keys elif ! grep -q `cat ${REPO_DIR}/.ssh/id_rsa.pub` ".ssh/authorized_keys"; then cat ${REPO_DIR}/.ssh/id_rsa.pub >> .ssh/authorized_keys