summaryrefslogtreecommitdiff
path: root/scripts/packages.php
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-04-12 10:28:31 +0200
committerErich Eckner <git@eckner.net>2018-04-12 10:28:31 +0200
commit5036d7a7172055a24ae9fa493e37998b725966eb (patch)
tree82956ba699664612f283109c104ae4533c5fc080 /scripts/packages.php
parent4b2dcc3b53fafcab1f1912990fd5468795108a18 (diff)
downloadarchweb32-5036d7a7172055a24ae9fa493e37998b725966eb.tar.xz
move buildmaster stuff to separate directory
Diffstat (limited to 'scripts/packages.php')
-rw-r--r--scripts/packages.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/packages.php b/scripts/packages.php
deleted file mode 100644
index b7c0196..0000000
--- a/scripts/packages.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
- $mysql = new mysqli("localhost", "webserver", "empty", "buildmaster");
- if ($mysql->connect_error) {
- die("Connection to mysql database failed: " . $mysql->connect_error);
- }
-
- $result = $mysql -> query("SELECT * FROM `binary_packages`");
- if ($result -> num_rows > 0) {
- while($row = $result->fetch_assoc()) {
- foreach ($row as $key => $val) {
- print $key .": ".$val." - ";
- }
- print "<br>\n";
- }
- }
-
- print 'OK';
-
-?>