[PATCH 1/3] Add ntp module to facilitate NTP-related code | |
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] | |
Since we now set up NTP in Anaconda, we need a module providing some
supporting NTP-related functions.
---
pyanaconda/ntp.py | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 117 insertions(+), 0 deletions(-)
create mode 100644 pyanaconda/ntp.py
diff --git a/pyanaconda/ntp.py b/pyanaconda/ntp.py
new file mode 100644
index 0000000..7d60c0a
--- /dev/null
+++ b/pyanaconda/ntp.py
@@ -0,0 +1,117 @@
+#
+# Copyright (C) 2012 Red Hat, Inc.
+#
+# This copyrighted material is made available to anyone wishing to use,
+# modify, copy, or redistribute it subject to the terms and conditions of
+# the GNU General Public License v.2, or (at your option) any later version.
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY expressed or implied, including the implied warranties 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, write to the
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
+# source code or documentation are not subject to the GNU General Public
+# License and may only be used or replicated with the express permission of
+# Red Hat, Inc.
+#
+# Red Hat Author(s): Vratislav Podzimek <vpodzime@xxxxxxxxxx>
+#
+
+"""
+Module facilitating the work with NTP servers and NTP daemon's configuration
+
+"""
+
+import re, os, tempfile
+from pyanaconda import iutil
+
+NTP_CONFIG_FILE = "/etc/chrony.conf"
+
+#example line:
+#server 0.fedora.pool.ntp.org iburst
+SRV_LINE_REGEXP = re.compile(r"^\s*server\s*([-a-zA-Z.0-9]+)\s*[a-zA-Z]+\s*$")
+
+def ntp_server_working(server):
+ """
+ Runs rdate to try to connect to the $server (timeout may take some time).
+
+ @return: True if the given server is reachable and working, False otherwise
+
+ """
+
+ #FIXME: It would be nice to use execWithRedirect here, but it is not
+ # thread-safe and hangs if this function is called from threads
+ # By using tee (and block-buffered pipes) it is alsos much slower.
+ #we just need to know the exit status
+ retc = os.system("rdate -p %s &>/dev/null" % server)
+
+ return retc == 0
+
+def get_servers_from_config(conf_file_path=NTP_CONFIG_FILE,
+ srv_regexp=SRV_LINE_REGEXP):
+ """
+ Goes through the chronyd's configuration file looking for lines starting
+ with 'server'.
+
+ @return: servers found in the chronyd's configuration
+ @rtype: list
+
+ """
+
+ ret = list()
+
+ with open(conf_file_path, "r") as conf_file:
+ line = conf_file.readline()
+ while line:
+ match = srv_regexp.match(line)
+ if match:
+ ret.append(match.group(1))
+
+ line = conf_file.readline()
+
+ return ret
+
+def save_servers_to_config(servers, conf_file_path=NTP_CONFIG_FILE,
+ srv_regexp=SRV_LINE_REGEXP, out_file_path=None):
+ """
+ Replaces the servers defined in the chornyd's configuration file with
+ the given ones. If the out_file is not None, then it is used for the
+ resulting config.
+
+ @type servers: iterable
+ @param out_file_path: path to the file used for the resulting config
+
+ """
+
+ old_conf_file = open(conf_file_path, "r")
+ if out_file_path:
+ new_conf_file = open(out_file_path, "w")
+ else:
+ (fildes, temp_path) = tempfile.mkstemp()
+ new_conf_file = os.fdopen(fildes, "w")
+
+ heading = "# These servers were defined in the installation:\n"
+
+ #write info about the origin of the following lines
+ new_conf_file.write(heading)
+
+ #write new servers
+ for server in servers:
+ new_conf_file.write("server " + server + " iburst\n")
+
+ #copy non-server lines from the old config and skip our heading
+ line = old_conf_file.readline()
+ while line:
+ if not srv_regexp.match(line) and line != heading:
+ new_conf_file.write(line)
+
+ line = old_conf_file.readline()
+
+ if not out_file_path:
+ stat = os.stat(conf_file_path)
+ os.rename(temp_path, conf_file_path)
+ os.chmod(conf_file_path, stat.st_mode)
+
+ old_conf_file.close()
+ new_conf_file.close()
--
1.7.4.4
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
[Home] [Fedora Users] [Fedora Legacy List] [Fedora Maintainers] [Fedora Desktop] [Red Hat 9 Bible] [Fedora Bible] [Fedora SELinux] [Big List of Linux Books] [Yosemite News] [Yosemite Photos] [KDE Users] [Fedora Tools]