From fb84c3d295fcfc82eb749857b6db82f51c8d3419 Mon Sep 17 00:00:00 2001 From: Stew Benedict Date: Mon, 25 Aug 2003 11:54:41 +0000 Subject: Add /etc/modules for local hardware config. --- perl-install/standalone/drakTermServ | 3 +++ 1 file changed, 3 insertions(+) (limited to 'perl-install/standalone/drakTermServ') diff --git a/perl-install/standalone/drakTermServ b/perl-install/standalone/drakTermServ index 772a0222e..90191fd24 100755 --- a/perl-install/standalone/drakTermServ +++ b/perl-install/standalone/drakTermServ @@ -1623,10 +1623,12 @@ sub client_hdw_config { cp_af("/etc/X11/XF86Config", "/etc/X11/XF86Config$suffix") if -f "/etc/X11/XF86Config"; cp_af("/etc/X11/XF86Config-4\$\$CLIENT\$\$", "/etc/X11/XF86Config-4$suffix") if -f "/etc/X11/XF86Config-4\$\$CLIENT\$\$"; cp_af("/dev/null", "/etc/modules.conf$suffix"); + cp_af("/dev/null", "/etc/modules$suffix"); # create mount points so they can be edited by the client my $mnt_access = "$client_ip(rw,no_root_squash)"; append_to_file("/etc/exports", "/etc/sysconfig/mouse$suffix\t$mnt_access\n"); append_to_file("/etc/exports", "/etc/modules.conf$suffix\t$mnt_access\n"); + append_to_file("/etc/exports", "/etc/modules$suffix\t$mnt_access\n"); append_to_file("/etc/exports", "/etc/X11/XF86Config$suffix\t$mnt_access\n"); append_to_file("/etc/exports", "/etc/X11/XF86Config-4$suffix\t$mnt_access\n"); } else { @@ -1653,6 +1655,7 @@ sub clean_client_config { eval { rm_rf("/etc/shadow$suffix") }; eval { rm_rf("/etc/sysconfig/mouse$suffix") }; eval { rm_rf("/etc/modules.conf$suffix") }; + eval { rm_rf("/etc/modules$suffix") }; eval { rm_rf("/etc/X11/XF86Config$suffix") }; eval { rm_rf("/etc/X11/XF86Config-4$suffix") }; remove_client_mounts($client_ip); -- cgit v1.2.1