2014-09-24 16:31:47 +04:00
|
|
|
#!/usr/bin/env python
|
2013-06-25 03:14:42 +04:00
|
|
|
#
|
2015-10-23 09:55:05 +03:00
|
|
|
# Microsoft Azure Linux Agent setup.py
|
2013-06-25 03:14:42 +04:00
|
|
|
#
|
|
|
|
# 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
|
2016-03-05 00:16:15 +03:00
|
|
|
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
|
|
|
|
2016-03-05 00:16:15 +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
|
2018-02-08 21:11:21 +03:00
|
|
|
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
|
|
|
|
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"]):
|
2016-06-18 00:56:44 +03:00
|
|
|
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)
|
2016-06-18 00:56:44 +03:00
|
|
|
set_udev_files(data_files)
|
2015-10-14 17:38:34 +03:00
|
|
|
if version.startswith("6"):
|
2015-08-05 11:42:06 +03:00
|
|
|
set_sysv_files(data_files)
|
2015-10-14 17:38:34 +03:00
|
|
|
else:
|
2016-08-18 20:36:39 +03:00
|
|
|
# redhat7.0+ use systemd
|
2015-10-14 17:38:34 +03:00
|
|
|
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
|
2015-10-14 17:38:34 +03:00
|
|
|
set_sysv_files(data_files)
|
2015-08-05 11:42:06 +03:00
|
|
|
|
2017-04-18 22:02:01 +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",
|
2016-01-13 01:15:07 +03:00
|
|
|
src=["config/coreos/waagent.conf"])
|
2015-08-05 11:42:06 +03:00
|
|
|
set_logrotate_files(data_files)
|
2016-06-18 00:56:44 +03:00
|
|
|
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"])
|
2017-07-11 11:34:24 +03:00
|
|
|
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)
|
2015-10-14 17:38:34 +03:00
|
|
|
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"])
|
2018-02-08 21:11:21 +03:00
|
|
|
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)
|
2016-06-18 00:56:44 +03:00
|
|
|
set_udev_files(data_files)
|
2015-10-14 17:38:34 +03:00
|
|
|
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',
|
2015-10-14 17:38:34 +03:00
|
|
|
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
|
2015-10-14 17:38:34 +03:00
|
|
|
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"])
|
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)
|
2017-12-05 11:10:48 +03:00
|
|
|
elif name == 'debian':
|
|
|
|
set_bin_files(data_files)
|
2017-12-05 11:13:00 +03:00
|
|
|
set_conf_files(data_files, src=["config/debian/waagent.conf"])
|
2017-12-05 11:10:48 +03:00
|
|
|
set_logrotate_files(data_files)
|
2017-12-05 11:11:24 +03:00
|
|
|
set_udev_files(data_files, dest="/lib/udev/rules.d")
|
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)
|
2016-06-18 00:56:44 +03:00
|
|
|
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
|
2014-11-19 09:49:22 +03:00
|
|
|
|
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'),
|
2016-08-31 01:04:38 +03:00
|
|
|
('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
|
2015-06-28 14:49:45 +03:00
|
|
|
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)
|
|
|
|
|
2015-06-28 14:49:45 +03:00
|
|
|
def run(self):
|
2015-06-29 12:26:32 +03:00
|
|
|
_install.run(self)
|
2015-06-28 14:49:45 +03:00
|
|
|
if self.register_service:
|
2016-08-31 01:04:38 +03:00
|
|
|
osutil = get_osutil()
|
|
|
|
osutil.register_agent_service()
|
2016-09-07 18:33:09 +03:00
|
|
|
osutil.stop_agent_service()
|
2016-08-31 01:04:38 +03:00
|
|
|
osutil.start_agent_service()
|
2015-06-16 10:00:24 +03:00
|
|
|
|
2018-02-15 17:38:59 +03:00
|
|
|
# Note to packagers and users from source.
|
2018-02-13 17:02:57 +03:00
|
|
|
# In version 3.5 of Python distribution information handling in the platform
|
|
|
|
# module was deprecated. Depending on the Linux distribution the
|
2018-02-15 17:38:59 +03:00
|
|
|
# implementation may be broken prior to Python 3.7 wher the functionality
|
|
|
|
# will be removed from Python 3
|
|
|
|
requires = []
|
|
|
|
if float(sys.version[:3]) >= 3.7:
|
|
|
|
requires = ['distro']
|
2016-08-18 20:36:39 +03:00
|
|
|
|
2016-06-30 02:28:51 +03:00
|
|
|
setuptools.setup(
|
|
|
|
name=AGENT_NAME,
|
|
|
|
version=AGENT_VERSION,
|
|
|
|
long_description=AGENT_DESCRIPTION,
|
2016-08-31 01:04:38 +03:00
|
|
|
author='Microsoft Corporation',
|
2016-08-18 20:36:39 +03:00
|
|
|
author_email='walinuxagent@microsoft.com',
|
|
|
|
platforms='Linux',
|
2016-06-30 02:28:51 +03:00
|
|
|
url='https://github.com/Azure/WALinuxAgent',
|
2016-08-18 20:36:39 +03:00
|
|
|
license='Apache License Version 2.0',
|
2016-06-30 02:28:51 +03:00
|
|
|
packages=find_packages(exclude=["tests"]),
|
|
|
|
py_modules=["__main__"],
|
2018-02-15 17:38:59 +03:00
|
|
|
install_requires=requires,
|
2016-08-18 20:36:39 +03:00
|
|
|
cmdclass={
|
2016-06-30 02:28:51 +03:00
|
|
|
'install': install
|
|
|
|
}
|
|
|
|
)
|