diff options
-rwxr-xr-x | samba_wizard/Samba.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/samba_wizard/Samba.pm b/samba_wizard/Samba.pm index 0066fe4a..80d98bd5 100755 --- a/samba_wizard/Samba.pm +++ b/samba_wizard/Samba.pm @@ -71,6 +71,7 @@ my $o = { }; # we ask glueconf to give us the structure representing /etc/samba/smb.conf +if (!-f "/etc/samba/smb.conf") { cp_af("/usr/share/samba/smb.conf.clean", "/etc/samba/smb.conf"); } my $samba = new Libconf::Glueconf::Samba::Smb_conf({ filename => '/etc/samba/smb.conf', show_commented_info => 1 }); #debug @@ -85,7 +86,7 @@ my %type = ( ); my @yesorno = qw(yes no); push @yesorno, ""; -my @loglevel = qw(0 1 2 3 4 5 6 7 8 9 10); +my @loglevel = qw(0 1 2 3 4 5 6 7 8 9); $o->{pages} = { welcome => { |