Removed the installation scripts, which is now done through the Makefile.
authorFrancois Fleuret <francois@fleuret.org>
Sun, 26 Apr 2009 20:21:06 +0000 (22:21 +0200)
committerFrancois Fleuret <francois@fleuret.org>
Sun, 26 Apr 2009 20:21:06 +0000 (22:21 +0200)
install.sh [deleted file]
remove.sh [deleted file]

diff --git a/install.sh b/install.sh
deleted file mode 100755 (executable)
index ce1d551..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-
-#  breezed is a fan speed control daemon for Linux computers.
-#
-#  Copyright (c) 2008, 2009 Francois Fleuret
-#  Written by Francois Fleuret <francois@fleuret.org>
-#
-#  This file is part of breezed.
-#
-#  breezed is free software: you can redistribute it and/or modify it
-#  under the terms of the GNU General Public License version 3 as
-#  published by the Free Software Foundation.
-#
-#  breezed is distributed in the hope that it will be useful, but
-#  WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with breezed.  If not, see <http://www.gnu.org/licenses/>.
-
-PM_SLEEPD_DIR="/usr/lib/pm-utils/sleep.d/"
-
-make -k
-
-if [[ ! -a "/etc/breezed.conf" ]]; then
-    echo "You have to copy one of the breezed_*.conf file in /etc/breezed.conf"
-    echo "before installing the daemon."
-    exit 0
-fi
-
-cp ./breezed /usr/local/bin/
-cp ./breezed.sh /etc/init.d/
-
-if [[ -d "${PM_SLEEPD_DIR}" ]]; then
-    cp ./breezed-pm-utils.sh ${PM_SLEEPD_DIR}/50breezed
-else
-    echo "I can not find ${PM_SLEEPD_DIR}"
-    echo "On Debian, you should install pm-utils"
-fi
-
-cp ./breezed.1 /usr/share/man/man1/
-
-update-rc.d breezed.sh defaults
-
-/etc/init.d/breezed.sh start
diff --git a/remove.sh b/remove.sh
deleted file mode 100755 (executable)
index 6fe1d7a..0000000
--- a/remove.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-#  breezed is a fan speed control daemon for Linux computers.
-#
-#  Copyright (c) 2008, 2009 Francois Fleuret
-#  Written by Francois Fleuret <francois@fleuret.org>
-#
-#  This file is part of breezed.
-#
-#  breezed is free software: you can redistribute it and/or modify it
-#  under the terms of the GNU General Public License version 3 as
-#  published by the Free Software Foundation.
-#
-#  breezed is distributed in the hope that it will be useful, but
-#  WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with breezed.  If not, see <http://www.gnu.org/licenses/>.
-
-/etc/init.d/breezed.sh stop
-
-update-rc.d -f breezed.sh remove
-
-rm /usr/local/bin/breezed
-rm /etc/init.d/breezed.sh
-rm -f /usr/lib/pm-utils/sleep.d/50breezed
-rm /usr/share/man/man1/breezed.1