From 1826e88e812e649697abd389642c59fd4ee9326c Mon Sep 17 00:00:00 2001 From: Draconis Date: Tue, 19 Feb 2019 14:21:40 +0100 Subject: [PATCH] not used --- coldmotd | 33 ------------ source/debian/changelog | 108 ---------------------------------------- source/debian/compat | 1 - source/debian/control | 12 ----- source/debian/copyright | 21 -------- source/debian/postinst | 15 ------ source/debian/rules | 36 -------------- 7 files changed, 226 deletions(-) delete mode 100644 coldmotd delete mode 100644 source/debian/changelog delete mode 100644 source/debian/compat delete mode 100644 source/debian/control delete mode 100644 source/debian/copyright delete mode 100644 source/debian/postinst delete mode 100755 source/debian/rules diff --git a/coldmotd b/coldmotd deleted file mode 100644 index d774a4c..0000000 --- a/coldmotd +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash -PROCCOUNT=`ps -Afl | wc -l` -PROCCOUNT=`expr $PROCCOUNT - 5` - -uptime=$( Fri, 23 Oct 2015 11:18:00 +0100 - -coldmotd (1.6) stable; urgency=low - - * obsolete ifconfig fixed by ip addr show - - -- Olivier Delort Wed, 21 Oct 2015 00:56:00 +0100 - -coldmotd (1.5) stable; urgency=low - - * back to the first install for zsh users - - -- Olivier Delort Wed, 21 Oct 2015 00:13:00 +0100 - -coldmotd (1.4) stable; urgency=low - - * message for zsh most viewer - - -- Olivier Delort Wed, 21 Oct 2015 00:13:00 +0100 - -coldmotd (1.3) stable; urgency=low - - * pause in postintall file fixed - - -- Olivier Delort Wed, 21 Oct 2015 00:07:00 +0100 - -coldmotd (1.2) stable; urgency=low - - * installation fixed fir zsh users - - -- Olivier Delort Wed, 21 Oct 2015 00:03:00 +0100 - -coldmotd (1.1) stable; urgency=low - - * use space disk for root partition added - * container space disk use for openvz and lxc - - -- Olivier Delort Tue, 20 Oct 2015 23:42:00 +0100 - -coldmotd (1.0) stable; urgency=low - - * new code - * Most simply to configure and install - - -- Olivier Delort Thu, 25 Jun 2015 06:56:00 +0100 - -coldmotd (1.0.1) stable; urgency=low - - * new layout - - -- Olivier Delort Mon, 28 Apr 2014 13:12:00 +0100 - -coldmotd (1.0.0) unstable; urgency=low - - * disk usage deleted - * warning message deleted - * new ascii logo - * first stable version 1.0.0 - - -- Olivier Delort Mon, 28 Apr 2014 13:12:00 +0100 - - -coldmotd (0.1-beta5) unstable; urgency=low - - * new logo. - - - -- Olivier Delort Fri, 21 Mar 2014 14:12:00 +0100 - -coldmotd (0.1-beta4) unstable; urgency=low - - * motd.tcl right configured at the end of the postinst. - - - -- Olivier Delort Fri, 21 Mar 2014 14:12:00 +0100 - -coldmotd (0.1-beta3) unstable; urgency=low - - * fi function was forgoten. - - - -- Olivier Delort Fri, 21 Mar 2014 11:56:00 +0100 - - -coldmotd (0.1-beta2) unstable; urgency=low - - * exit 0 added at the end of the postinst file. - - - -- Olivier Delort Fri, 21 Mar 2014 11:56:00 +0100 - -coldmotd (0.1-beta1) unstable; urgency=low - - * postinst file added to install new bootlogs file. - - - -- Olivier Delort Fri, 21 Mar 2014 10:56:00 +0100 - -coldmotd (0.1) unstable; urgency=low - - * Initial release. - - - -- Olivier Delort Fri, 21 Mar 2014 06:56:00 +0100 diff --git a/source/debian/compat b/source/debian/compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/source/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/source/debian/control b/source/debian/control deleted file mode 100644 index ecbca1b..0000000 --- a/source/debian/control +++ /dev/null @@ -1,12 +0,0 @@ -Source: coldmotd -Section: misc -Priority: extra -Maintainer: Olivier Delort -Build-Depends: debhelper (>= 5.0.0) -Standards-Version: 1.7 -Homepage: http://wiki-colmaris.olivierdelort.net - -Package: coldmotd -Architecture: all -Depends: lsb-release -Description: Configuration for the message of the day colmaris's server. diff --git a/source/debian/copyright b/source/debian/copyright deleted file mode 100644 index 6219e9b..0000000 --- a/source/debian/copyright +++ /dev/null @@ -1,21 +0,0 @@ -This package was debianized by Olivier Delort -Fri, 21 Mar 2014 06:59:00 +0100 - -Copyright: - Packaging copyright © 2014 Olivier Delort - Writting copyright © 2014 Olivier Delort - -License: - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - - Copyright (C) 2004 Sam Hocevar - - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/source/debian/postinst b/source/debian/postinst deleted file mode 100644 index 8741621..0000000 --- a/source/debian/postinst +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -#Disable the motd in SSH Server -sed -i 's/#PrintMotd yes/PrintMotd no/g' /etc/ssh/sshd_config -#Enable motd for bash user -echo "/usr/local/bin/coldmotd" > /etc/profile.d/coldmotd.sh -chmod +x /etc/profile.d/coldmotd.sh -# for zsh users -if [ -f "/usr/bin/zsh" ];then -echo "/usr/local/bin/coldmotd" >> ~/.zprofile; -fi -#disable the system motd -echo "" > /etc/motd -chmod +x /usr/local/bin/coldmotd -exit 0 diff --git a/source/debian/rules b/source/debian/rules deleted file mode 100755 index c0bfaa6..0000000 --- a/source/debian/rules +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/make -f - -build: - -build-arch: - -build-indep: - -clean: - dh_testdir - dh_testroot - dh_clean - -install: - dh_install coldmotd /usr/local/bin - dh_install motd-maint /etc/ - dh_install openvz /usr/local/bin - dh_install lxc /usr/local/bin - dh_testdir - dh_testroot -binary-arch: - -binary-indep: install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_fixperms - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch - -.PHONY: clean install binary-arch binary-indep binary