From bd52264f669ee3b2b60470df91ee00f116dd3814 Mon Sep 17 00:00:00 2001 From: Arnaud Desmons Date: Mon, 26 Aug 2002 13:16:43 +0000 Subject: OO and get_workgroup, get_banner fillfunc --- samba_wizard/scripts/Smbconf.pm | 70 ++++++++++++++++++++++++++--------------- 1 file changed, 44 insertions(+), 26 deletions(-) (limited to 'samba_wizard/scripts') diff --git a/samba_wizard/scripts/Smbconf.pm b/samba_wizard/scripts/Smbconf.pm index 62b57ed2..f2331235 100755 --- a/samba_wizard/scripts/Smbconf.pm +++ b/samba_wizard/scripts/Smbconf.pm @@ -11,10 +11,8 @@ use strict; # but can not add anything. # so one variable cannot be commented and not in the same file. -my %conf; -my @tab; - my $o = DrakconnectConf->new(); +my $old = read_conf("/etc/samba/smb.conf"); sub check { $> and return 1; @@ -28,8 +26,11 @@ sub check_services { } sub read_conf { + my $self = {}; my ($file) = @_; my $menu; + my @tab; + my %conf; open(FH, $file) or die "$!"; while () { @@ -43,20 +44,24 @@ sub read_conf { } push @tab, $_; } + $self->{conf} = \%conf; + $self->{tab} = \@tab; + bless $self; } sub write_conf { + my $self = shift; my ($file) = @_; my $menu; open(FH, "> $file") or die "$!"; - foreach (@tab) { + foreach (@{$self->{tab}}) { if (/^\s*\;?\s*\[(.*)\].*/) { $menu = $1; - print FH "$conf{$menu}{__comment}"."[$menu]\n"; + print FH "$self->{conf}->{$menu}{__comment}"."[$menu]\n"; } elsif (/^(?!\#)\s*\;*\s*(.*?)\s*=/) { - print FH "$conf{$menu}{$1}{comment}"."$1" ." = ". "$conf{$menu}{$1}{value}\n"; + print FH "$self->{conf}->{$menu}{$1}{comment}"."$1" ." = ". "$self->{conf}->{$menu}{$1}{value}\n"; } else { print FH $_; @@ -65,60 +70,73 @@ sub write_conf { } sub comment_menu { + my $self = shift; my ($menu, $str) = @_; - $conf{$menu}{__comment} = $str; - foreach (keys %{$conf{$menu}}) { + $self->{conf}->{$menu}{__comment} = $str; + foreach (keys %{$self->{conf}->{$menu}}) { ($_ eq "__comment") and next; - $conf{$menu}{$_}{comment} = $str; + $self->{conf}->{$menu}{$_}{comment} = $str; } } sub comment_var { + my $self = shift; my ($menu, $var, $str) = @_; - $conf{$menu}{$var}{comment} = $str; + $self->{conf}->{$menu}{$var}{comment} = $str; } sub chg_var { + my $self = shift; my ($menu, $var, $str) = @_; - $conf{$menu}{$var}{value} = $str; + $self->{conf}->{$menu}{$var}{value} = $str; } sub file_sharing { + my $self = shift; mkdir_p("/home/samba/public"); standalone->explanations("Enabling samba /home/samba/public sharing"); # comment_menu("homes", ";"); - comment_menu("public", ""); - chg_var("global", "security", "share"); + $self->comment_menu("public", ""); + $self->chg_var("global", "security", "share"); } sub homes { + my $self = shift; standalone->explanations("Enabling samba /home/samba/public sharing"); - comment_menu("homes", ""); - chg_var("global", "security", "share"); + $self->comment_menu("homes", ""); + $self->chg_var("global", "security", "share"); } sub printer_sharing { + my $self = shift; standalone->explanations("Enabling samba printer sharing"); - comment_menu("printers", ""); + $self->comment_menu("printers", ""); +} + +sub get_workgroup { + $old->{conf}->{global}{workgroup}{value}; +} + +sub get_banner { + $old->{conf}->{global}{"server string"}{value}; } # remember one variable cannot be commented and not in the same file. sub do_it { - - read_conf("__WIZ_HOME__/samba_wizard/scripts/smb.conf.default"); - chg_var("global", "workgroup", $ENV{wiz_workgroup}); - chg_var("global", "server string", $ENV{wiz_banner}); + my $conf = read_conf("__WIZ_HOME__/samba_wizard/scripts/smb.conf.default"); + $conf->chg_var("global", "workgroup", $ENV{wiz_workgroup}); + $conf->chg_var("global", "server string", $ENV{wiz_banner}); my $ip = $o->get_from_known_dev("IP"); - file_sharing() if $ENV{wiz_do_file_sharing}; - printer_sharing() if $ENV{wiz_do_printer_sharing}; - homes() if $ENV{wiz_do_homes}; - chg_var("global", "hosts allow", $ip); - chg_var("global", "security", "share"); - write_conf("/etc/samba/smb.conf"); + $conf->file_sharing() if $ENV{wiz_do_file_sharing}; + $conf->printer_sharing() if $ENV{wiz_do_printer_sharing}; + $conf->homes() if $ENV{wiz_do_homes}; + $conf->chg_var("global", "hosts allow", $ip); + $conf->chg_var("global", "security", "share"); + $conf->write_conf("/etc/samba/smb.conf"); system("/etc/rc.d/init.d/smb restart"); 10; } -- cgit v1.2.1