From 920760102dfc0a937f6e0453cbd8c9f36ca63584 Mon Sep 17 00:00:00 2001 From: Eugeni Dodonov Date: Wed, 18 Mar 2009 23:03:09 +0000 Subject: Installing portmap with draknfs, and enabling services on boot (#48913). --- bin/draknfs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'bin/draknfs') 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 -- cgit v1.2.1