summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2012-04-13 13:55:47 -0400
committerWill Woods <wwoods@redhat.com>2012-04-20 18:11:53 -0400
commitd0fdcd376939801b28b6378c99a16a006932409f (patch)
treed7676a6c3adbd316793a63648bf144e1ab1d78e6 /data
parent585aab36b75932f07c619c9c21be8668f0e298e4 (diff)
downloadanaconda-d0fdcd376939801b28b6378c99a16a006932409f.tar.gz
anaconda-d0fdcd376939801b28b6378c99a16a006932409f.tar.xz
anaconda-d0fdcd376939801b28b6378c99a16a006932409f.zip
remove now-unused 'loadkeys' stub
Lorax f17-branch commit 3859368 removes the 'loadkeys' stub from the installer image; it's not used for anything else so we can delete it here.
Diffstat (limited to 'data')
-rwxr-xr-xdata/command-stubs/loadkeys-stub41
1 files changed, 0 insertions, 41 deletions
diff --git a/data/command-stubs/loadkeys-stub b/data/command-stubs/loadkeys-stub
deleted file mode 100755
index 1fdc2c984..000000000
--- a/data/command-stubs/loadkeys-stub
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/python
-#
-# loadkeys-stub
-#
-# Copyright (C) 2007 Red Hat, Inc. All rights reserved.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-
-import os
-import sys
-
-from pyanaconda import isys
-
-def usage():
- print "usage: %s keymap" %(sys.argv[0],)
- sys.exit(1)
-
-def main():
- if len(sys.argv) != 2:
- usage()
-
- try:
- isys.loadKeymap(sys.argv[1])
- except SystemError:
- pass
- sys.exit(0)
-
-if __name__ == "__main__":
- main()