Server IP : 172.16.15.8 / Your IP : 3.136.23.132 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0555) : /usr/sbin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#!/usr/libexec/platform-python # # handle-sshpw: Code processing sshpw lines in kickstart files for the # install environment. # # Copyright (C) 2012-2015 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/>. # # Some of this code comes from the old pyanaconda/sshd.py # import os import sys from pykickstart.parser import KickstartParser from pykickstart.version import makeVersion from pykickstart.sections import NullSection import pyanaconda.core.users as users from pyanaconda.core.kickstart.version import VERSION ksfile = '/run/install/ks.cfg' # see if we have a file to work with if not os.path.exists(ksfile): sys.exit() handler = makeVersion(VERSION) ksparser = KickstartParser(handler, missingIncludeIsFatal=False) ksparser.registerSection(NullSection(handler, sectionOpen="%addon")) ksparser.registerSection(NullSection(handler, sectionOpen="%anaconda")) ksparser.readKickstart(ksfile) userdata = ksparser.handler.sshpw.dataList() for ud in userdata: if users.check_user_exists(ud.username, root="/"): if not ud.sshkey: users.set_user_password(username=ud.username, password=ud.password, is_crypted=ud.isCrypted, lock=ud.lock) else: users.create_user(username=ud.username, password=ud.password, is_crypted=ud.isCrypted, lock=ud.lock, root="/") if ud.sshkey: # Setup the account so that only the sshkey can be used users.set_user_password(username=ud.username, password="*", is_crypted=True, lock=False) users.set_user_ssh_key(username=ud.username, key=ud.password, root="/")