Remove debug stuff
This commit is contained in:
parent
0b18ba9613
commit
bf9c6ca09e
1 changed files with 0 additions and 4 deletions
|
@ -11,8 +11,6 @@ use POSIX qw/_exit/;
|
||||||
use Moo;
|
use Moo;
|
||||||
use Carp qw/croak/;
|
use Carp qw/croak/;
|
||||||
|
|
||||||
use Data::Dumper;
|
|
||||||
|
|
||||||
has no_proc => (is => 'rw');
|
has no_proc => (is => 'rw');
|
||||||
|
|
||||||
for my $p (qw/tmp mount pid net ipc user uts sysvsem/) {
|
for my $p (qw/tmp mount pid net ipc user uts sysvsem/) {
|
||||||
|
@ -56,7 +54,6 @@ sub pre_setup {
|
||||||
|
|
||||||
croak "Private net is not yet supported" if $self->private_net;
|
croak "Private net is not yet supported" if $self->private_net;
|
||||||
if ($self->private_pid && (ref $args{code} ne 'CODE' || !$args{_run})) {
|
if ($self->private_pid && (ref $args{code} ne 'CODE' || !$args{_run})) {
|
||||||
warn Dumper(\%args);
|
|
||||||
croak "Private PID space requires a coderef to become the new PID 1";
|
croak "Private PID space requires a coderef to become the new PID 1";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -85,7 +82,6 @@ sub post_setup {
|
||||||
sub setup {
|
sub setup {
|
||||||
my ($self, %args) = @_;
|
my ($self, %args) = @_;
|
||||||
|
|
||||||
warn Dumper(\%args);
|
|
||||||
my $uflags = $self->_uflags;
|
my $uflags = $self->_uflags;
|
||||||
$self->pre_setup(%args);
|
$self->pre_setup(%args);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue