diff options
author | Mike Fulbright <msf@redhat.com> | 2003-01-15 02:52:42 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-01-15 02:52:42 +0000 |
commit | f1c5bfd098986ab9a27924e6ac3d3162ef3cfdd2 (patch) | |
tree | d48b327ee973722e0c2c32c4565ec130d7b41812 /command-stubs | |
parent | 4d1f22cd8690aaa071934a32dbf1babc7e06de8c (diff) | |
download | anaconda-f1c5bfd098986ab9a27924e6ac3d3162ef3cfdd2.tar.gz anaconda-f1c5bfd098986ab9a27924e6ac3d3162ef3cfdd2.tar.xz anaconda-f1c5bfd098986ab9a27924e6ac3d3162ef3cfdd2.zip |
oops order wrong
Diffstat (limited to 'command-stubs')
-rw-r--r-- | command-stubs/Makefile | 2 | ||||
-rwxr-xr-x | command-stubs/rescue-startx-stub | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/command-stubs/Makefile b/command-stubs/Makefile index e68983bba..b69270f18 100644 --- a/command-stubs/Makefile +++ b/command-stubs/Makefile @@ -1,7 +1,7 @@ include ../Makefile.inc STUBS = raidstart-stub raidstop-stub kudzu-probe-stub list-harddrives-stub \ - loadkeys-stub losetup-stub pump-stub mknod-stub + loadkeys-stub losetup-stub pump-stub mknod-stub rescue-startx-stub all: @echo "Nothing to do" diff --git a/command-stubs/rescue-startx-stub b/command-stubs/rescue-startx-stub index 479be99f2..808bce166 100755 --- a/command-stubs/rescue-startx-stub +++ b/command-stubs/rescue-startx-stub @@ -19,5 +19,5 @@ else: mode = '800x600' xserver.probeHWandStartXServer(mode) -os.system("twm&") -os.system("xterm") +os.system("xterm&") +os.system("twm") |