Advertisement
gnu699

create_pc_tab_users.pl

Oct 13th, 2014
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.16 KB | None | 0 0
  1. ==> config.pl
  2.  
  3.  
  4. use strict;
  5. use warnings;
  6. our (%example);
  7.  
  8. # Config
  9. %example = (
  10.   center1 => {
  11.     lan => '172.16.0',
  12.     cant_pcs_user => '69',
  13.     cant_tab_user => '20',
  14.   },
  15.   center2 => {
  16.     lan => '172.17.0',
  17.     cant_pcs_user => '69',
  18.     cant_tab_user => '20',
  19.   },
  20. );
  21.  
  22.  
  23. ==> pc_tab_users.pl
  24.  
  25. #!/usr/bin/perl
  26. use strict;
  27. use warnings;
  28.  
  29. our (%example);
  30. my $arch_conf = "/home/user/config.pl";
  31. open CONF, $arch_conf
  32.   or die "Can't read config file: $arch_conf\n";
  33. my $config = join '', <CONF>;
  34. close CONF;
  35.  
  36. eval $config;
  37. die "Can't read configuration: $@\n" if $@;
  38.  
  39. # Paths
  40. my $bind_ns1_conf_dir = '/home/user/';
  41.  
  42. foreach my $center ( sort keys %example ) {
  43.     my $lan = $example{$center}{'lan'};
  44.     my $cant_pcs_user = $example{$center}{'cant_pcs_user'};
  45.     my $cant_tab_user = $example{$center}{'cant_tab_user'};
  46.  
  47.     for ( my $i=1 ; $i<=$cant_pcs_user+1 ; $i++ ) {
  48.       printf DB_EXAMPLE_COM "pc%02d-l-%s         IN   A    %s.1%02d\n", $i, $center, $lan, $i;
  49.     }
  50.  
  51.     for ( my $i=1 ; $i<=$cant_tab_user+1 ; $i++ ) {
  52.       printf DB_EXAMPLE_COM "tb%02d-a-%s         IN   A    %s.1%02d\n", $i, $center, $lan, $i;
  53.     }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement