summaryrefslogtreecommitdiff
path: root/SL2LS.pl
blob: 4824d2c6a2fab3169b9e2af26b4cc813b289a1a6 (plain)
  1. #!/usr/bin/perl
  2. # Simple script. Right now, all that needs to be done is that the SL directory
  3. # needs to be deleted and the sql-ledger.conf needs to be renamed.
  4. open (SL, "< sql-ledger.conf");
  5. open (LS, "> ledger-smb.conf");
  6. while ($line = <SL>){
  7. print LS $line;
  8. }
  9. unlink sql-ledger.conf;
  10. #TODO: Move/Delete the SL directory