WALinuxAgent/setup.py

222 строки
8.1 KiB
Python
Исходник Обычный вид История

2014-09-24 16:31:47 +04:00
#!/usr/bin/env python
#
# Microsoft Azure Linux Agent setup.py
#
# Copyright 2013 Microsoft Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
2015-06-09 12:04:18 +03:00
import os
from azurelinuxagent.common.version import AGENT_NAME, AGENT_VERSION, \
2016-08-18 20:36:39 +03:00
AGENT_DESCRIPTION, \
DISTRO_NAME, DISTRO_VERSION, DISTRO_FULL_NAME
2015-06-16 10:00:24 +03:00
from azurelinuxagent.common.osutil import get_osutil
2015-06-16 10:00:24 +03:00
import setuptools
2015-06-04 09:19:12 +03:00
from setuptools import find_packages
2015-06-29 12:26:32 +03:00
from setuptools.command.install import install as _install
import sys
2014-09-24 16:31:47 +04:00
2015-06-09 12:04:18 +03:00
root_dir = os.path.dirname(os.path.abspath(__file__))
os.chdir(root_dir)
2016-08-18 20:36:39 +03:00
2015-08-05 11:42:06 +03:00
def set_files(data_files, dest=None, src=None):
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
def set_bin_files(data_files, dest="/usr/sbin",
2015-08-05 11:42:06 +03:00
src=["bin/waagent", "bin/waagent2.0"]):
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
2015-08-05 11:42:06 +03:00
def set_conf_files(data_files, dest="/etc", src=["config/waagent.conf"]):
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
def set_logrotate_files(data_files, dest="/etc/logrotate.d",
2015-08-05 11:42:06 +03:00
src=["config/waagent.logrotate"]):
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
2015-08-05 11:42:06 +03:00
def set_sysv_files(data_files, dest="/etc/rc.d/init.d", src=["init/waagent"]):
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
def set_systemd_files(data_files, dest="/lib/systemd/system",
2015-08-05 11:42:06 +03:00
src=["init/waagent.service"]):
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
Add initial support for the OpenBSD operating system (#712) * Add initial support for the OpenBSD operating system There are some differences between FreeBSD, OpenBSD, and Linux. Notes: - OpenBSD ships LibreSSL, but WALinuxAgent needs OpenSSL for CMS, so use the openssl port and the "eopenssl" binary instead. - Don't run the custom DHCP client but parse /var/db/dhclient.leases.hvn0. OpenBSD's lease file uses a modified syntax. - OpenBSD does not have /proc. WALinuxAgent should never assume that the /proc filesystem is available. - OpenBSD does not have sudo, but its replacement doas. The OpenBSD class implements support for modifying the doas.conf file. - Unlike FreeBSD, OpenBSD supports and mounts UDF DVDs just fine. - Create a swap partition instead of a swap file on the resource disk. - Many other minor changes for OpenBSD TODO: - The /proc checks needs to be replaced with pgrep/ps etc. checks for OpenBSD. For now it just checks if /proc is available or returns without error. Make sure to install waagent with --register-service as setuptools will not set the permissions of /etc/rc.d/waagent correctly (the file has to be executable to be used by OpenBSD's rc system). * Remove debug statement that was use to fix mount_dvd on OpenBSD. * I accidentally replaced the FreeBSD resource disk handler. The OpenBSD disk handler is an addition, not a replacement. Found by jonathangray * pylint pylint found one bug in setting the password; other changes are just for the style. * strip newline from generated password hash. Issue reported by Lili Deng. * Keep AutoUpdate enabled, it was disabled for initial porting. Pointed out by @hglkrijger * Use a wildcard and delete all DHCP lease files on *BSD. Requested by @hglkrijger
2017-05-31 01:27:22 +03:00
def set_freebsd_rc_files(data_files, dest="/etc/rc.d/", src=["init/freebsd/waagent"]):
data_files.append((dest, src))
def set_openbsd_rc_files(data_files, dest="/etc/rc.d/", src=["init/openbsd/waagent"]):
2016-01-29 12:16:00 +03:00
data_files.append((dest, src))
2016-08-18 20:36:39 +03:00
def set_udev_files(data_files, dest="/etc/udev/rules.d/",
src=["config/66-azure-storage.rules",
"config/99-azure-product-uuid.rules"]):
data_files.append((dest, src))
2016-01-29 12:16:00 +03:00
2015-06-29 14:02:22 +03:00
def get_data_files(name, version, fullname):
2015-06-16 10:00:24 +03:00
"""
Determine data_files according to distro name, version and init system type
"""
2016-08-18 20:36:39 +03:00
data_files = []
2015-06-16 10:00:24 +03:00
if name == 'redhat' or name == 'centos':
2015-08-05 11:42:06 +03:00
set_bin_files(data_files)
set_conf_files(data_files)
set_logrotate_files(data_files)
set_udev_files(data_files)
if version.startswith("6"):
2015-08-05 11:42:06 +03:00
set_sysv_files(data_files)
else:
2016-08-18 20:36:39 +03:00
# redhat7.0+ use systemd
set_systemd_files(data_files, dest="/usr/lib/systemd/system")
if version.startswith("7.1"):
2016-08-18 20:36:39 +03:00
# TODO this is a mitigation to systemctl bug on 7.1
set_sysv_files(data_files)
2015-08-05 11:42:06 +03:00
elif name == 'arch':
set_bin_files(data_files, dest="/usr/bin")
set_conf_files(data_files, src=["config/arch/waagent.conf"])
set_udev_files(data_files)
set_systemd_files(data_files, dest='/usr/lib/systemd/system',
src=["init/arch/waagent.service"])
2015-06-16 10:00:24 +03:00
elif name == 'coreos':
2015-08-05 11:42:06 +03:00
set_bin_files(data_files, dest="/usr/share/oem/bin")
2016-08-18 20:36:39 +03:00
set_conf_files(data_files, dest="/usr/share/oem",
src=["config/coreos/waagent.conf"])
2015-08-05 11:42:06 +03:00
set_logrotate_files(data_files)
set_udev_files(data_files)
2016-08-18 20:36:39 +03:00
set_files(data_files, dest="/usr/share/oem",
2016-04-06 08:26:16 +03:00
src=["init/coreos/cloud-config.yml"])
elif name == 'clear linux os for intel architecture' \
2017-07-18 00:34:23 +03:00
or name == 'clear linux software for intel architecture':
2016-10-20 20:03:33 +03:00
set_bin_files(data_files, dest="/usr/bin")
set_conf_files(data_files, dest="/usr/share/defaults/waagent",
src=["config/clearlinux/waagent.conf"])
set_systemd_files(data_files, dest='/usr/lib/systemd/system',
src=["init/clearlinux/waagent.service"])
2015-06-18 08:50:46 +03:00
elif name == 'ubuntu':
2015-08-05 11:42:06 +03:00
set_bin_files(data_files)
set_conf_files(data_files, src=["config/ubuntu/waagent.conf"])
set_logrotate_files(data_files)
2017-05-03 22:30:05 +03:00
set_udev_files(data_files)
if version.startswith("12") or version.startswith("14"):
2016-08-18 20:36:39 +03:00
# Ubuntu12.04/14.04 - uses upstart
2015-08-05 11:42:06 +03:00
set_files(data_files, dest="/etc/init",
src=["init/ubuntu/walinuxagent.conf"])
2016-08-18 20:36:39 +03:00
set_files(data_files, dest='/etc/default',
2015-08-05 11:42:06 +03:00
src=['init/ubuntu/walinuxagent'])
elif fullname == 'Snappy Ubuntu Core':
2016-08-18 20:36:39 +03:00
set_files(data_files, dest="<TODO>",
2015-08-05 11:42:06 +03:00
src=["init/ubuntu/snappy/walinuxagent.yml"])
2015-08-06 20:59:59 +03:00
else:
2016-08-18 20:36:39 +03:00
# Ubuntu15.04+ uses systemd
set_systemd_files(data_files,
2015-08-06 20:59:59 +03:00
src=["init/ubuntu/walinuxagent.service"])
elif name == 'suse' or name == 'opensuse':
2015-08-05 11:42:06 +03:00
set_bin_files(data_files)
set_conf_files(data_files, src=["config/suse/waagent.conf"])
set_logrotate_files(data_files)
set_udev_files(data_files)
if fullname == 'SUSE Linux Enterprise Server' and \
version.startswith('11') or \
2016-08-18 20:36:39 +03:00
fullname == 'openSUSE' and version.startswith(
'13.1'):
set_sysv_files(data_files, dest='/etc/init.d',
src=["init/suse/waagent"])
2015-06-29 14:02:22 +03:00
else:
2016-08-18 20:36:39 +03:00
# sles 12+ and openSUSE 13.2+ use systemd
set_systemd_files(data_files, dest='/usr/lib/systemd/system')
2016-01-15 12:13:15 +03:00
elif name == 'freebsd':
2016-01-29 12:16:00 +03:00
set_bin_files(data_files, dest="/usr/local/sbin")
2016-01-15 12:13:15 +03:00
set_conf_files(data_files, src=["config/freebsd/waagent.conf"])
Add initial support for the OpenBSD operating system (#712) * Add initial support for the OpenBSD operating system There are some differences between FreeBSD, OpenBSD, and Linux. Notes: - OpenBSD ships LibreSSL, but WALinuxAgent needs OpenSSL for CMS, so use the openssl port and the "eopenssl" binary instead. - Don't run the custom DHCP client but parse /var/db/dhclient.leases.hvn0. OpenBSD's lease file uses a modified syntax. - OpenBSD does not have /proc. WALinuxAgent should never assume that the /proc filesystem is available. - OpenBSD does not have sudo, but its replacement doas. The OpenBSD class implements support for modifying the doas.conf file. - Unlike FreeBSD, OpenBSD supports and mounts UDF DVDs just fine. - Create a swap partition instead of a swap file on the resource disk. - Many other minor changes for OpenBSD TODO: - The /proc checks needs to be replaced with pgrep/ps etc. checks for OpenBSD. For now it just checks if /proc is available or returns without error. Make sure to install waagent with --register-service as setuptools will not set the permissions of /etc/rc.d/waagent correctly (the file has to be executable to be used by OpenBSD's rc system). * Remove debug statement that was use to fix mount_dvd on OpenBSD. * I accidentally replaced the FreeBSD resource disk handler. The OpenBSD disk handler is an addition, not a replacement. Found by jonathangray * pylint pylint found one bug in setting the password; other changes are just for the style. * strip newline from generated password hash. Issue reported by Lili Deng. * Keep AutoUpdate enabled, it was disabled for initial porting. Pointed out by @hglkrijger * Use a wildcard and delete all DHCP lease files on *BSD. Requested by @hglkrijger
2017-05-31 01:27:22 +03:00
set_freebsd_rc_files(data_files)
elif name == 'openbsd':
set_bin_files(data_files, dest="/usr/local/sbin")
set_conf_files(data_files, src=["config/openbsd/waagent.conf"])
set_openbsd_rc_files(data_files)
2015-08-05 11:42:06 +03:00
else:
2016-08-18 20:36:39 +03:00
# Use default setting
2015-08-05 11:42:06 +03:00
set_bin_files(data_files)
set_conf_files(data_files)
set_logrotate_files(data_files)
set_udev_files(data_files)
2015-08-05 11:42:06 +03:00
set_sysv_files(data_files)
2015-06-04 09:19:12 +03:00
return data_files
2016-08-18 20:36:39 +03:00
2015-06-29 12:26:32 +03:00
class install(_install):
user_options = _install.user_options + [
2015-06-16 10:00:24 +03:00
('lnx-distro=', None, 'target Linux distribution'),
('lnx-distro-version=', None, 'target Linux distribution version'),
2015-06-29 14:02:22 +03:00
('lnx-distro-fullname=', None, 'target Linux distribution full name'),
('register-service', None, 'register as startup service and start'),
2015-08-05 11:42:06 +03:00
('skip-data-files', None, 'skip data files installation'),
2015-06-16 10:00:24 +03:00
]
def initialize_options(self):
2015-06-29 12:26:32 +03:00
_install.initialize_options(self)
2015-07-20 09:54:00 +03:00
self.lnx_distro = DISTRO_NAME
self.lnx_distro_version = DISTRO_VERSION
self.lnx_distro_fullname = DISTRO_FULL_NAME
self.register_service = False
2015-08-05 11:42:06 +03:00
self.skip_data_files = False
2016-08-18 20:36:39 +03:00
2015-06-16 10:00:24 +03:00
def finalize_options(self):
2015-06-29 12:26:32 +03:00
_install.finalize_options(self)
2015-08-05 11:42:06 +03:00
if self.skip_data_files:
return
2015-06-16 10:00:24 +03:00
data_files = get_data_files(self.lnx_distro, self.lnx_distro_version,
2015-06-29 14:02:22 +03:00
self.lnx_distro_fullname)
2015-06-16 10:00:24 +03:00
self.distribution.data_files = data_files
self.distribution.reinitialize_command('install_data', True)
def run(self):
2015-06-29 12:26:32 +03:00
_install.run(self)
if self.register_service:
osutil = get_osutil()
osutil.register_agent_service()
2016-09-07 18:33:09 +03:00
osutil.stop_agent_service()
osutil.start_agent_service()
2015-06-16 10:00:24 +03:00
requires = []
if float(sys.version[:3]) >= 3.5:
requires = ['distro']
2016-08-18 20:36:39 +03:00
setuptools.setup(
name=AGENT_NAME,
version=AGENT_VERSION,
long_description=AGENT_DESCRIPTION,
author='Microsoft Corporation',
2016-08-18 20:36:39 +03:00
author_email='walinuxagent@microsoft.com',
platforms='Linux',
url='https://github.com/Azure/WALinuxAgent',
2016-08-18 20:36:39 +03:00
license='Apache License Version 2.0',
packages=find_packages(exclude=["tests"]),
install_requires=requires,
py_modules=["__main__"],
2016-08-18 20:36:39 +03:00
cmdclass={
'install': install
}
)