summaryrefslogtreecommitdiffstats
path: root/move/tree/wait4x
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2005-09-02 16:38:15 +0000
committerMystery Man <unknown@mandriva.org>2005-09-02 16:38:15 +0000
commitd53d83f3f80a9cad384644bb0d98b4d3d257b4d8 (patch)
tree575ef8f623300f7315ed26bec8c2ef670327366f /move/tree/wait4x
parent46a079ddbe5c93b62183e0a30aed11328eee5939 (diff)
downloaddrakx-backup-do-not-use-10_3_0_52mdk.tar
drakx-backup-do-not-use-10_3_0_52mdk.tar.gz
drakx-backup-do-not-use-10_3_0_52mdk.tar.bz2
drakx-backup-do-not-use-10_3_0_52mdk.tar.xz
drakx-backup-do-not-use-10_3_0_52mdk.zip
This commit was manufactured by cvs2svn to create tagV10_3_0_52mdk
'V10_3_0_52mdk'.
Diffstat (limited to 'move/tree/wait4x')
-rwxr-xr-xmove/tree/wait4x21
1 files changed, 0 insertions, 21 deletions
diff --git a/move/tree/wait4x b/move/tree/wait4x
deleted file mode 100755
index a3158f1bd..000000000
--- a/move/tree/wait4x
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/perl
-
-use MDK::Common;
-use lib qw(/usr/lib/libDrakX);
-use xf86misc::main;
-
-my $nb = 0;
-$| = 1;
-print "waiting for X";
-foreach (1..30) {
- print ".";
- sleep 1;
- print("no X server :(\n"), exit 1 if !fuzzy_pidofs(qr/\bX_move\b/);
- $nb++ if xf86misc::main::Xtest(':0');
- if ($nb > 2) { #- one succeeded test is not enough :-(
- print "found\n";
- exit 0;
- }
-}
-print "not found\n";
-exit 1;