From 0e33fcb29000ecbb19260a3e37680cbd7a82c11b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 15 Aug 2012 13:56:47 +0200 Subject: [PATCH] added lincence headers --- bash/backupscript | 25 ++++++++++++++++++++++--- bash/boot | 24 ++++++++++++++++++++++++ bash/changestation | 23 +++++++++++++++++++++++ bash/deviantbg | 27 +++++++++++++++++++++++---- bash/fritzbox | 23 +++++++++++++++++++++++ bash/getpanoramas | 22 ++++++++++++++++++++++ bash/mountl2p | 23 +++++++++++++++++++++++ bash/zyxel | 24 +++++++++++++++++++++++- 8 files changed, 183 insertions(+), 8 deletions(-) diff --git a/bash/backupscript b/bash/backupscript index c9a4496..3fdf54b 100755 --- a/bash/backupscript +++ b/bash/backupscript @@ -1,7 +1,26 @@ #!/bin/bash -#============================================================= -# System Backupscript von Steffen Vogel (info@steffenvogel.de) -#============================================================= +## + # System Backupscript + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## #============================================================= # Haupt Einstellungen diff --git a/bash/boot b/bash/boot index 9697ec4..122d5ee 100755 --- a/bash/boot +++ b/bash/boot @@ -1,4 +1,28 @@ #!/bin/bash +## + # Send wake on lan packages to the LAN network + # + # includes MAC lookup via DNS and ARP + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de/ + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## IP_REGEX="[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}" diff --git a/bash/changestation b/bash/changestation index e6767e1..053933d 100755 --- a/bash/changestation +++ b/bash/changestation @@ -1,2 +1,25 @@ #!/bin/sh +## + # Changestation script for lastfmproxy + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## + wget http://87.230.33.74:2944/$1 diff --git a/bash/deviantbg b/bash/deviantbg index df8ffe5..d897451 100755 --- a/bash/deviantbg +++ b/bash/deviantbg @@ -1,8 +1,27 @@ #!/bin/bash - -# Deviant Background Changer 1.1 -# by Steffen Vogel (info@steffenvogel.de) -# http://www.steffenvogel.de/2009/11/28/deviantart-wallpapers/ +## + # Deviant Background Changer + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de/2009/11/28/deviantart-wallpapers/ + # @version 1.1 + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## # Path to save downloaded images BG_PATH="/home/steffen/backgrounds" diff --git a/bash/fritzbox b/bash/fritzbox index 1f89877..6f8e26a 100755 --- a/bash/fritzbox +++ b/bash/fritzbox @@ -1,4 +1,27 @@ #!/bin/bash +## + # reconnect avm fritzbox router + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## + curl 'http://fritz.box:49000/upnp/control/WANIPConn1' \ -H 'Content-Type: text/xml; charset="utf-8"' \ -H 'SoapAction: urn:schemas-upnp-org:service:WANIPConnection:1#ForceTermination' \ diff --git a/bash/getpanoramas b/bash/getpanoramas index 88604c0..ca44e84 100755 --- a/bash/getpanoramas +++ b/bash/getpanoramas @@ -1,4 +1,26 @@ #!/bin/bash +## + # Find images taken with little time diff (panoramas) + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de/ + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## MIN_DIFF=5 LAST_TS=0 diff --git a/bash/mountl2p b/bash/mountl2p index 6399403..98c34f8 100755 --- a/bash/mountl2p +++ b/bash/mountl2p @@ -1,4 +1,27 @@ #!/bin/bash +## + # Mount MS Sharepoint folders of the RWTH L²P System in gvfs + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de/ + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## + // TODO thats just a draft. It's not working yet! Please contact me, if you are interested in this script diff --git a/bash/zyxel b/bash/zyxel index 14ab1d0..55ba77c 100755 --- a/bash/zyxel +++ b/bash/zyxel @@ -1,5 +1,27 @@ #!/bin/bash - +## + # reconnect zyxel prestige router + # + # @copyright 2012 Steffen Vogel + # @license http://www.gnu.org/licenses/gpl.txt GNU Public License + # @author Steffen Vogel + # @link http://www.steffenvogel.de + ## +## + # This script is free software: you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by + # the Free Software Foundation, either version 3 of the License, or + # any later version. + # + # This script 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 this script. If not, see . + ## + IP=192.168.1.1 USER=admin