diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/draknfs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/draknfs b/bin/draknfs index 3d1497b..cc3d42e 100755 --- a/bin/draknfs +++ b/bin/draknfs @@ -35,6 +35,7 @@ use ugtk2 qw(:ask :wrappers :create :dialogs); my $in = 'interactive'->vnew('su'); $in->do_pkgs->ensure_is_installed('nfs-utils', '/etc/rc.d/init.d/nfs-server') or exit(1); $in->do_pkgs->ensure_is_installed('rpcbind', '/etc/rc.d/init.d/rpcbind') or exit(1); +$in->do_pkgs->ensure_is_installed('portmap', '/etc/rc.d/init.d/portmap') or exit(1); use constant COLUMN_DIR => 0; use constant COLUMN_ACCESS => 1; @@ -580,8 +581,9 @@ my $okcancel = create_okcancel({ ); my $wait = $in->wait_message(N("Please wait"), N("Starting the NFS-server")); -services::_run_action('rpcbind', "start"); -services::_run_action('nfs-server', "start"); +services::enable('portmap'); +services::enable('rpcbind'); +services::enable('nfs-server'); undef $wait; # main interface |