more file name and path changes foerste
authorMatthias Förste <foerste@schlittermann.de>
Fri, 15 Jul 2011 10:32:23 +0200
branchfoerste
changeset 17 7f24266dc25d
parent 16 44cdd9d6fd8c
child 18 1687d7a6700a
more file name and path changes
Build.PL
cgi-bin/admin/ius-dav-htuseradd.cgi
cgi-bin/ius-dav-htuseradd.cgi
--- a/Build.PL	Fri Jul 15 10:28:04 2011 +0200
+++ b/Build.PL	Fri Jul 15 10:32:23 2011 +0200
@@ -41,9 +41,9 @@
         'String::MkPasswd' => 0
     },
     script_files => [glob 'bin/*'],
-    cgi_files => { map { /\.(bak|orig)$/ ? () : ($_ => $_) } glob 'cgi-bin/admin/*' }
+    cgi_files => { map { /\.(bak|orig)$/ ? () : ($_ => $_) } glob 'cgi-bin/*' }
 );
 $build->add_build_element('cgi');
 $build->install_path(
-    'cgi-bin' => $build->original_prefix($build->installdirs) . '/lib/cgi-bin');
+    'cgi-bin' => $build->original_prefix($build->installdirs) . '/lib/ius-dav-htpasswd/cgi-bin');
 $build->create_build_script;
--- a/cgi-bin/admin/ius-dav-htuseradd.cgi	Fri Jul 15 10:28:04 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,65 +0,0 @@
-#!/usr/bin/perl
-
-#    Copyright (C) 2011  Matthias Förste
-#
-#    This program 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
-#    (at your option) any later version.
-#
-#    This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#    Matthias Förste <foerste@schlittermann.de>
-
-use warnings;
-
-# Using CGI::Fast will result in an Internal Server Error because we are
-# restarting apache when everything else works
-# use CGI::Fast;
-use CGI;
-use Ius::Dav::Htpasswd qw(mkpasswd readconfig useradd);
-
-my $q = new CGI;
-
-    print $q->header(-charset => 'UTF-8');
-    print $q->start_html(
-        -title   => $0,
-        -bgcolor => "white",
-    );
-
-    my ($user, $pass, $expiry) = (
-        $q->param('user'),
-        $q->param('pass'),
-        $q->param('expiry')
-    );
-
-    unless (defined $user or defined $pass or defined $expiry) {
-
-        print $q->start_form,
-            'New User' => $q->textfield('user'),
-            'Password' => $q->password_field('pass'),
-            'Expiry' => $q->textfield('expiry'),
-            $q->submit,
-            $q->end_form;
-
-    } else {
-
-        my @cmd = (qw(sudo ius-dav-htuseradd -u), $user);
-        push @cmd, '-e', $expiry if defined $expiry and $expiry ne ''; 
-
-        if (my $pass = qx(@cmd)) {
-            chomp $pass;
-            print $q->p($pass);
-        } else {
-            print $q->p('Something went wrong');
-        } 
-
-    }
-
-    print $q->end_html;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cgi-bin/ius-dav-htuseradd.cgi	Fri Jul 15 10:32:23 2011 +0200
@@ -0,0 +1,65 @@
+#!/usr/bin/perl
+
+#    Copyright (C) 2011  Matthias Förste
+#
+#    This program 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
+#    (at your option) any later version.
+#
+#    This program 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 program.  If not, see <http://www.gnu.org/licenses/>.
+#
+#    Matthias Förste <foerste@schlittermann.de>
+
+use warnings;
+
+# Using CGI::Fast will result in an Internal Server Error because we are
+# restarting apache when everything else works
+# use CGI::Fast;
+use CGI;
+use Ius::Dav::Htpasswd qw(mkpasswd readconfig useradd);
+
+my $q = new CGI;
+
+    print $q->header(-charset => 'UTF-8');
+    print $q->start_html(
+        -title   => $0,
+        -bgcolor => "white",
+    );
+
+    my ($user, $pass, $expiry) = (
+        $q->param('user'),
+        $q->param('pass'),
+        $q->param('expiry')
+    );
+
+    unless (defined $user or defined $pass or defined $expiry) {
+
+        print $q->start_form,
+            'New User' => $q->textfield('user'),
+            'Password' => $q->password_field('pass'),
+            'Expiry' => $q->textfield('expiry'),
+            $q->submit,
+            $q->end_form;
+
+    } else {
+
+        my @cmd = (qw(sudo ius-dav-htuseradd -u), $user);
+        push @cmd, '-e', $expiry if defined $expiry and $expiry ne ''; 
+
+        if (my $pass = qx(@cmd)) {
+            chomp $pass;
+            print $q->p($pass);
+        } else {
+            print $q->p('Something went wrong');
+        } 
+
+    }
+
+    print $q->end_html;