summaryrefslogtreecommitdiff
path: root/bin/icradius_reset
blob: 58663ee6b54209cb650d5f837dfcb14cc0cf840f (plain)
1
2
3
4
5
6
7

  my $sth = $icradius_dbh->prepare("DELETE FROM radcheck");
  $sth->execute or die "Can't reset radcheck table: ". $sth->errstr;
  my $sth2 = $icradius_dbh->prepare("DELETE FROM radreply");
  $sth2->execute or die "Can't reset radreply table: ". $sth2->errstr;