diff options
Diffstat (limited to 'globetrotter')
-rw-r--r-- | globetrotter/hwprofile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/globetrotter/hwprofile b/globetrotter/hwprofile index 32cb99efe..b22ff0c8b 100644 --- a/globetrotter/hwprofile +++ b/globetrotter/hwprofile @@ -28,7 +28,9 @@ use network::netconnect; my $id = "MDK" . md5_hex(join("", (map { (split)[1] } cat_("/proc/bus/pci/devices")))); my $netcnx = {}; -my $is_first_boot = !glob_("/etc/netprofile/profiles/MDK*"); + +# first boot wizard: +!glob_("/etc/netprofile/profiles/MDK*") and system('/usr/sbin/mdkmove'); # create hardware profile if needed: if (! -d "/etc/netprofile/profiles/$id") { @@ -40,8 +42,5 @@ if (! -d "/etc/netprofile/profiles/$id") { $netcnx->{PROFILE} = $id; eval { network::netconnect::set_profile($netcnx) }; -# first boot wizard: -$is_first_boot and system('/usr/sbin/mdkmove'); - # redo ldconfig cache for libGL (since we've both ATI and NVIDIA GLX packages): system("/sbin/ldconfig"); |