]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
changes to everything
authorMaps <maps@ikf>
Thu, 20 Jun 2013 17:27:01 +0000 (19:27 +0200)
committerMaps <maps@ikf>
Thu, 20 Jun 2013 17:27:01 +0000 (19:27 +0200)
.gitignore
config/README.txt [new file with mode: 0644]
index.pl
temp/README.txt [new file with mode: 0644]
tools/gitupdate.pl [changed mode: 0644->0755]

index 29e33c3b56165ca3c735dd94442fff5d8127723b..0a40453746ce6d132e0fe0c14b226ba40ec797c8 100644 (file)
@@ -2,4 +2,4 @@ devel
 *~
 *bak
 .kateproject
-
+temp
diff --git a/config/README.txt b/config/README.txt
new file mode 100644 (file)
index 0000000..bc654ca
--- /dev/null
@@ -0,0 +1 @@
+Here are all configuration files that should stay on the server and not be overwritten with a normal update.
index 57a56e0317211fd8e8149ad829ab4e3759dd8361..6a2d59d81bbca665407563089aa958c48e90faab 100755 (executable)
--- a/index.pl
+++ b/index.pl
@@ -37,8 +37,8 @@ Guess what? We didn't write any!
 <ul>
 <li><a href="tools/gitupdate.pl?stable">Check-out the stable branch without config files</a>
 <li><a href="tools/gitupdate.pl?stable-config">Check-out the stable branch with config files</a>
-<li><a href="tools/gitupdate.pl?devel">Check-out the devel branch without config files</a>
-<li><a href="tools/gitupdate.pl?devel-config">Check-out the devel branch with config files</a>
+<!--<li><a href="tools/gitupdate.pl?devel">Check-out the devel branch without config files</a>
+<li><a href="tools/gitupdate.pl?devel-config">Check-out the devel branch with config files</a>-->
 </div>
 
 </body>
diff --git a/temp/README.txt b/temp/README.txt
new file mode 100644 (file)
index 0000000..8399015
--- /dev/null
@@ -0,0 +1,3 @@
+Here are all temporary files that are not supposed to be in /tmp for whatever reason.
+
+Don't put a file named 'config' here, it will be deleted!
old mode 100644 (file)
new mode 100755 (executable)
index 8b13789..56faf7c
@@ -1 +1,44 @@
+#!/usr/bin/perl
+print "Content-type: text/plain\n";
+print "\n\n";
+
+use warnings;
+use Data::Dumper;
+use CGI::Carp qw(fatalsToBrowser);
+
+my $query = $ENV{'QUERY_STRING'};
+
+sub cmd {
+       my @x = qx(cmd." 2>&1");
+       print Dumper @x;
+}
+
+
+print "Running Git Update\n";
+
+unless ($query =~ m/stable/) {
+       print "Function not implemented.\n";
+       exit;
+       }
+
+
+unless ($query =~ m/config/) {
+       print "Copying configuration file folder\n";
+       cmd("cp -r ../config ../temp/config");
+       }
+
+
+print "Undoing changes in config files\n";
+cmd("git checkout -- ../config ../temp");
+
+
+unless ($query =~ m/config/) {
+       print "Copying configuration file folder back\n";
+       cmd("cp -r ../temp/config  ../");
+
+       print "Removing temporary configuration file folder\n";
+       cmd("rm -r ../temp/config");
+       }
+
+