diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-04-03 12:10:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-04-03 12:10:28 +0000 |
commit | 0174312dcc18f17ebd089f409f035b894861fd51 (patch) | |
tree | eeed4f4767783bb11d4574c1b1da76acc1d198d8 /perl-install | |
parent | 98b8bb8ecdf103ce39870aac697c906b5723c3e8 (diff) | |
download | drakx-backup-do-not-use-0174312dcc18f17ebd089f409f035b894861fd51.tar drakx-backup-do-not-use-0174312dcc18f17ebd089f409f035b894861fd51.tar.gz drakx-backup-do-not-use-0174312dcc18f17ebd089f409f035b894861fd51.tar.bz2 drakx-backup-do-not-use-0174312dcc18f17ebd089f409f035b894861fd51.tar.xz drakx-backup-do-not-use-0174312dcc18f17ebd089f409f035b894861fd51.zip |
don't start xfs if skiptest
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/XFdrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/XFdrake b/perl-install/standalone/XFdrake index 34d5f742b..f70815753 100755 --- a/perl-install/standalone/XFdrake +++ b/perl-install/standalone/XFdrake @@ -50,7 +50,7 @@ my $f = "/usr/X11R6/lib/X11/Cards"; $in->standalone::pkgs_install('XFree86', 'XFree86-75dpi-fonts') if (! -e $f); -e $f or die "install XFree86 first!\n"; -`pidof xfs` > 0 or system("/etc/rc.d/init.d/xfs start"); +`pidof xfs` > 0 or system("/etc/rc.d/init.d/xfs start") if $i->{skiptest}; system("mount /proc 2>/dev/null"); # ensure /proc is mounted for pci probing |