diff --git a/.gitattributes b/.gitattributes index f3783952..45470f54 100644 --- a/.gitattributes +++ b/.gitattributes @@ -510,8 +510,6 @@ nightlybuild/nightly.key -text po/alternc-admintools.pot -text po/fr/LC_MESSAGES/.svnignore -text po/fr/LC_MESSAGES/alternc-admintools.po -text -/quota_delete -text -/quota_init -text /repos-to-tx.sh -text selenium/20120826-alternc-panel-testsuite.html -text selenium/README -text diff --git a/quota_delete b/quota_delete deleted file mode 100644 index 96391d72..00000000 --- a/quota_delete +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/php -q - - Delete completely a quota from the quota managment system. -"; - return 1; -} - -$name=$argv[1]; - -include("/var/alternc/bureau/class/local.php"); - -if (!mysql_connect($L_MYSQL_HOST,$L_MYSQL_LOGIN,$L_MYSQL_PWD)) { - echo "Cannot connect to Mysql !\n"; - return 1; -} - -if (!mysql_select_db($L_MYSQL_DATABASE)) { - echo "Cannot connect to Mysql database $L_MYSQL_DATABASE !\n"; - return 1; -} - -$r=mysql_query("DELETE FROM defquotas WHERE quota='$name';"); -if (mysql_errno()) { - echo "Mysql Error : ".mysql_error()."\n"; - return 1; -} - -$r=mysql_query("DELETE FROM quotas WHERE name='$name';"); -if (mysql_errno()) { - echo "Mysql Error : ".mysql_error()."\n"; - return 1; -} - -return 0; - -?> diff --git a/quota_init b/quota_init deleted file mode 100644 index 683ff8a9..00000000 --- a/quota_init +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/php -q - - Create a quota entry for each existing user and set the default quota to the - specified value. -"; - return 1; -} - -$name=$argv[1]; -$quota=$argv[2]; - -include("/var/alternc/bureau/class/local.php"); - -if (!mysql_connect($L_MYSQL_HOST,$L_MYSQL_LOGIN,$L_MYSQL_PWD)) { - echo "Cannot connect to Mysql !\n"; - return 1; -} - -if (!mysql_select_db($L_MYSQL_DATABASE)) { - echo "Cannot connect to Mysql database $L_MYSQL_DATABASE !\n"; - return 1; -} - -$r=mysql_query("DELETE FROM defquotas WHERE quota='$name';"); -if (mysql_errno()) { - echo "Mysql Error : ".mysql_error()."\n"; - return 1; -} - -$r=mysql_query("INSERT INTO defquotas (quota,value) VALUES ('$name','$quota');"); -if (mysql_errno()) { - echo "Mysql Error : ".mysql_error()."\n"; - return 1; -} - -$r=mysql_query("SELECT uid FROM membres;"); -if (mysql_errno()) { - echo "Mysql Error : ".mysql_error()."\n"; - return 1; -} -while ($c=mysql_fetch_array($r)) { - $s=mysql_query("SELECT name FROM quotas WHERE uid='$c[uid]' AND name='$name';"); - if (!mysql_num_rows($s)) { - mysql_query("INSERT INTO quotas (uid,name,total) VALUES ('$c[uid]','$name','$value');"); - } -} - -return 0; - -?>