To porting setup scripts to python3, following utility functions/classes introduced: - run(): execute command line, returns return code - out(): execute command line, returns stdout as string - is_debian_variant() / is_redhat_variant() / is_gentoo_variant() / is_ec2() / is_systemd(): detect specific environment - hex2list(): implement hex2list.py code as a function - makedirs(): same as os.makedirs() but do nothing when dir is exists - dist_name() / dist_ver(): alias of platform.dist() - class systemd_unit: an utility to control systemd unit using systemctl - class sysconfig_parser: reader/writer of /etc/sysconfig files - class concolor: ANSI color escape sequences list
35 lines
1.0 KiB
Python
Executable File
35 lines
1.0 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# Copyright 2016 ScyllaDB
|
|
#
|
|
|
|
#
|
|
# This file is part of Scylla.
|
|
#
|
|
# Scylla is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Scylla 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 Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#
|
|
# hex2list.py is cpuset format converter (see cpuset(7)).
|
|
# It reads "Mask Format" parameter from stdin,
|
|
# outputs "List Format" parameter to stdout.
|
|
#
|
|
# Here's example to convert '00000000,000e3862' to List Format:
|
|
# $ echo 00000000,000e3862 | hex2list.py
|
|
# 1,5-6,11-13,17-19
|
|
#
|
|
|
|
from scylla_util import hex2list
|
|
|
|
print(hex2list(input()))
|