File: FixUp.pm

package info (click to toggle)
librose-db-perl 0.786-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 840 kB
  • sloc: perl: 12,269; makefile: 9
file content (14 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package My::FixUp;

sub fixup
{
  My::DB->modify_db(domain => 'otherdomain',
                    type   => 'othertype',
                    port   => 456);
}

My::DB->modify_db(domain => 'otherdomain',
                  type   => 'othertype',
                  port   => 789);

1;