From bc836877ed36af8d6e1cc39b55f88cca0cd7c568 Mon Sep 17 00:00:00 2001 From: Mikhail Ivanov Date: Mon, 30 May 2016 16:30:34 +0300 Subject: [PATCH] Update openstack-ceilometer - Remove openstack-ceilometer-polling - Update dependencies Change-Id: Ic1d240d7f7c6693582a22b8965a582f155123bce Related-Bug:#1581611 Related-Bug:#1586359 --- .../openstack-ceilometer-compute.service | 2 +- .../rpm/SOURCES/openstack-ceilometer-polling | 1 - .../openstack-ceilometer-polling.service | 1 - centos7/rpm/SPECS/openstack-ceilometer.spec | 156 +++--- xenial/debian/README.Debian | 2 + .../debian/ceilometer-agent-central.init.in | 18 + .../debian/ceilometer-agent-central.manpages | 1 + xenial/debian/ceilometer-agent-central.postrm | 10 + .../debian/ceilometer-agent-compute.init.in | 18 + .../debian/ceilometer-agent-compute.manpages | 1 + xenial/debian/ceilometer-agent-compute.postrm | 10 + xenial/debian/ceilometer-agent-ipmi.init.in | 18 + xenial/debian/ceilometer-agent-ipmi.postrm | 12 + .../ceilometer-agent-notification.init.in | 17 + .../ceilometer-agent-notification.install | 1 + .../ceilometer-agent-notification.postrm | 12 + xenial/debian/ceilometer-api.config.in | 11 + xenial/debian/ceilometer-api.init.in | 17 + xenial/debian/ceilometer-api.install | 1 + xenial/debian/ceilometer-api.manpages | 1 + xenial/debian/ceilometer-api.postinst.in | 15 + xenial/debian/ceilometer-api.postrm | 10 + xenial/debian/ceilometer-api.templates | 48 ++ xenial/debian/ceilometer-collector.cron.daily | 4 + xenial/debian/ceilometer-collector.init.in | 17 + xenial/debian/ceilometer-collector.install | 1 + xenial/debian/ceilometer-collector.manpages | 1 + xenial/debian/ceilometer-collector.postrm | 10 + xenial/debian/ceilometer-common.config.in | 14 + xenial/debian/ceilometer-common.install | 16 + xenial/debian/ceilometer-common.logrotate | 8 + xenial/debian/ceilometer-common.postinst.in | 61 ++ xenial/debian/ceilometer-common.postrm | 16 + xenial/debian/ceilometer-common.templates | 77 +++ xenial/debian/ceilometer-doc.doc-base | 9 + xenial/debian/ceilometer-polling.init.in | 17 + xenial/debian/changelog | 520 ++++++++++++++++++ xenial/debian/compat | 1 + xenial/debian/control | 368 +++++++++++++ xenial/debian/copyright | 35 ++ xenial/debian/debian_control_vars | 1 + xenial/debian/gbp.conf | 9 + xenial/debian/mans/ceilometer-agent-central.8 | 30 + xenial/debian/mans/ceilometer-agent-compute.8 | 30 + xenial/debian/mans/ceilometer-api.8 | 30 + xenial/debian/mans/ceilometer-collector.8 | 30 + xenial/debian/po/POTFILES.in | 2 + xenial/debian/po/cs.po | 264 +++++++++ xenial/debian/po/da.po | 264 +++++++++ xenial/debian/po/de.po | 274 +++++++++ xenial/debian/po/es.po | 282 ++++++++++ xenial/debian/po/fr.po | 277 ++++++++++ xenial/debian/po/it.po | 263 +++++++++ xenial/debian/po/ja.po | 263 +++++++++ xenial/debian/po/nl.po | 274 +++++++++ xenial/debian/po/pt.po | 274 +++++++++ xenial/debian/po/ru.po | 263 +++++++++ xenial/debian/po/sv.po | 257 +++++++++ xenial/debian/po/templates.pot | 241 ++++++++ xenial/debian/pydist-overrides | 2 + xenial/debian/python-ceilometer.install | 2 + xenial/debian/python-ceilometer.links | 3 + xenial/debian/rules | 71 +++ xenial/debian/source/format | 1 + xenial/debian/watch | 3 + 65 files changed, 4880 insertions(+), 88 deletions(-) delete mode 100644 centos7/rpm/SOURCES/openstack-ceilometer-polling create mode 100644 xenial/debian/README.Debian create mode 100644 xenial/debian/ceilometer-agent-central.init.in create mode 100644 xenial/debian/ceilometer-agent-central.manpages create mode 100644 xenial/debian/ceilometer-agent-central.postrm create mode 100644 xenial/debian/ceilometer-agent-compute.init.in create mode 100644 xenial/debian/ceilometer-agent-compute.manpages create mode 100644 xenial/debian/ceilometer-agent-compute.postrm create mode 100644 xenial/debian/ceilometer-agent-ipmi.init.in create mode 100644 xenial/debian/ceilometer-agent-ipmi.postrm create mode 100644 xenial/debian/ceilometer-agent-notification.init.in create mode 100644 xenial/debian/ceilometer-agent-notification.install create mode 100644 xenial/debian/ceilometer-agent-notification.postrm create mode 100644 xenial/debian/ceilometer-api.config.in create mode 100644 xenial/debian/ceilometer-api.init.in create mode 100644 xenial/debian/ceilometer-api.install create mode 100644 xenial/debian/ceilometer-api.manpages create mode 100644 xenial/debian/ceilometer-api.postinst.in create mode 100644 xenial/debian/ceilometer-api.postrm create mode 100644 xenial/debian/ceilometer-api.templates create mode 100644 xenial/debian/ceilometer-collector.cron.daily create mode 100644 xenial/debian/ceilometer-collector.init.in create mode 100644 xenial/debian/ceilometer-collector.install create mode 100644 xenial/debian/ceilometer-collector.manpages create mode 100644 xenial/debian/ceilometer-collector.postrm create mode 100644 xenial/debian/ceilometer-common.config.in create mode 100644 xenial/debian/ceilometer-common.install create mode 100644 xenial/debian/ceilometer-common.logrotate create mode 100644 xenial/debian/ceilometer-common.postinst.in create mode 100644 xenial/debian/ceilometer-common.postrm create mode 100644 xenial/debian/ceilometer-common.templates create mode 100644 xenial/debian/ceilometer-doc.doc-base create mode 100644 xenial/debian/ceilometer-polling.init.in create mode 100644 xenial/debian/changelog create mode 100644 xenial/debian/compat create mode 100644 xenial/debian/control create mode 100644 xenial/debian/copyright create mode 100644 xenial/debian/debian_control_vars create mode 100644 xenial/debian/gbp.conf create mode 100644 xenial/debian/mans/ceilometer-agent-central.8 create mode 100644 xenial/debian/mans/ceilometer-agent-compute.8 create mode 100644 xenial/debian/mans/ceilometer-api.8 create mode 100644 xenial/debian/mans/ceilometer-collector.8 create mode 100644 xenial/debian/po/POTFILES.in create mode 100644 xenial/debian/po/cs.po create mode 100644 xenial/debian/po/da.po create mode 100644 xenial/debian/po/de.po create mode 100644 xenial/debian/po/es.po create mode 100644 xenial/debian/po/fr.po create mode 100644 xenial/debian/po/it.po create mode 100644 xenial/debian/po/ja.po create mode 100644 xenial/debian/po/nl.po create mode 100644 xenial/debian/po/pt.po create mode 100644 xenial/debian/po/ru.po create mode 100644 xenial/debian/po/sv.po create mode 100644 xenial/debian/po/templates.pot create mode 100644 xenial/debian/pydist-overrides create mode 100644 xenial/debian/python-ceilometer.install create mode 100644 xenial/debian/python-ceilometer.links create mode 100755 xenial/debian/rules create mode 100644 xenial/debian/source/format create mode 100644 xenial/debian/watch diff --git a/centos7/rpm/SOURCES/openstack-ceilometer-compute.service b/centos7/rpm/SOURCES/openstack-ceilometer-compute.service index c252452..9125e28 100644 --- a/centos7/rpm/SOURCES/openstack-ceilometer-compute.service +++ b/centos7/rpm/SOURCES/openstack-ceilometer-compute.service @@ -5,7 +5,7 @@ After=syslog.target network.target [Service] Type=simple User=ceilometer -ExecStart=/usr/bin/ceilometer-polling --polling-namespaces compute --logfile /var/log/ceilometer/compute.log +ExecStart=/usr/bin/ceilometer-polling --polling-namespaces compute --logfile /var/log/ceilometer/openstack-ceilometer-compute.log [Install] WantedBy=multi-user.target diff --git a/centos7/rpm/SOURCES/openstack-ceilometer-polling b/centos7/rpm/SOURCES/openstack-ceilometer-polling deleted file mode 100644 index c2fcada..0000000 --- a/centos7/rpm/SOURCES/openstack-ceilometer-polling +++ /dev/null @@ -1 +0,0 @@ -OPTIONS="--polling-namespace 'central' 'compute'" diff --git a/centos7/rpm/SOURCES/openstack-ceilometer-polling.service b/centos7/rpm/SOURCES/openstack-ceilometer-polling.service index d51ef57..24fa86f 100644 --- a/centos7/rpm/SOURCES/openstack-ceilometer-polling.service +++ b/centos7/rpm/SOURCES/openstack-ceilometer-polling.service @@ -5,7 +5,6 @@ After=syslog.target network.target [Service] Type=simple User=ceilometer -EnvironmentFile=/etc/sysconfig/openstack-ceilometer-polling ExecStart=/usr/bin/ceilometer-polling --logfile /var/log/ceilometer/polling.log $OPTIONS [Install] diff --git a/centos7/rpm/SPECS/openstack-ceilometer.spec b/centos7/rpm/SPECS/openstack-ceilometer.spec index 5a9dcbf..936f3f6 100644 --- a/centos7/rpm/SPECS/openstack-ceilometer.spec +++ b/centos7/rpm/SPECS/openstack-ceilometer.spec @@ -6,8 +6,8 @@ Name: openstack-ceilometer # Liberty semver reset # https://review.openstack.org/#/q/I6a35fa0dda798fad93b804d00a46af80f08d475c,n,z Epoch: 1 -Version: 5.0.0.0rc1 -Release: 1%{?dist}~mos8.0.1 +Version: 7.0.0~b2 +Release: 1%{?dist} Summary: OpenStack measurement collection service Group: Applications/System @@ -18,17 +18,14 @@ Source1: %{pypi_name}-dist.conf Source2: %{pypi_name}.logrotate Source3: %{pypi_name}.conf.sample Source4: ceilometer-rootwrap-sudoers -Source5: openstack-ceilometer-polling Source10: %{name}-api.service Source11: %{name}-collector.service Source12: %{name}-compute.service Source13: %{name}-central.service -Source14: %{name}-alarm-notifier.service -Source15: %{name}-alarm-evaluator.service -Source16: %{name}-notification.service -Source17: %{name}-ipmi.service -Source18: %{name}-polling.service +Source14: %{name}-notification.service +Source15: %{name}-ipmi.service +Source16: %{name}-polling.service BuildArch: noarch BuildRequires: intltool @@ -56,25 +53,25 @@ Requires: python-iso8601 >= 0.1.9 Requires: python-lxml >= 2.3 Requires: python-anyjson >= 0.3.3 Requires: python-jsonpath-rw >= 1.2.0 -Requires: python-jsonpath-rw-ext >= 0.1.7 -Requires: python-stevedore >= 1.5.0 +Requires: python-jsonpath-rw-ext >= 0.1.9 +Requires: python-stevedore >= 1.9.0 Requires: python-msgpack >= 0.4.0 Requires: python-pbr >= 1.6 Requires: python-six >= 1.9.0 -Requires: python-sqlalchemy >= 0.9.9 +Requires: python-sqlalchemy >= 1.0.10 Requires: python-alembic >= 0.8.0 Requires: python-migrate >= 0.9.6 Requires: python-webob >= 1.2.3 -Requires: python-oslo-config >= 2:2.3.0 +Requires: python-oslo-config >= 2:3.9.0 Requires: PyYAML >= 3.1.0 Requires: python-netaddr >= 0.7.12 Requires: python-oslo-rootwrap >= 2.0.0 Requires: python-oslo-vmware >= 1.16.0 -Requires: python-requests >= 2.5.2 +Requires: python-requests >= 2.8.1 -Requires: pysnmp >= 4.2.1 +Requires: pysnmp >= 4.2.3 Requires: pytz >= 2013.6 Requires: python-croniter >= 0.3.4 @@ -83,13 +80,21 @@ Requires: python-jsonschema >= 2.0.0 Requires: python-werkzeug >= 0.7 Requires: python-oslo-context >= 0.2.0 -Requires: python-oslo-concurrency >= 2.3.0 -Requires: python-oslo-i18n >= 1.5.0 -Requires: python-oslo-log >= 1.8.0 -Requires: python-oslo-middleware >= 2.8.0 +Requires: python-oslo-concurrency >= 3.5.0 +Requires: python-oslo-i18n >= 2.1.0 +Requires: python-oslo-log >= 1.14.0 +Requires: python-oslo-middleware >= 3.0.0 Requires: python-oslo-policy >= 0.5.0 -Requires: python-oslo-service >= 0.7.0 -Requires: python-oslo-reports >= 0.1.0 +Requires: python-oslo-service >= 1.0.0 +Requires: python-oslo-reports >= 0.6.0 + +Requires: python-futures >= 3.0 +Requires: python-futurist >= 0.11.0 +Requires: python-debtcollector >= 1.2.0 + +Requires: python-openstackclient +Requires: python-cotyledon + %description -n python-ceilometer OpenStack ceilometer provides services to measure and @@ -103,9 +108,10 @@ Summary: Components common to all OpenStack ceilometer services Group: Applications/System Requires: python-ceilometer = %{epoch}:%{version}-%{release} -Requires: python-oslo-messaging >= 1.16.0 -Requires: python-oslo-serialization >= 1.4.0 -Requires: python-oslo-utils >= 2.0.0 +Requires: python-oslo-messaging >= 5.2.0 +Requires: python-oslo-serialization >= 1.10.0 + +Requires: python-oslo-utils >= 3.5.0 Requires: python-posix_ipc Requires(post): systemd-units @@ -130,10 +136,12 @@ Group: Applications/System Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-polling = %{epoch}:%{version}-%{release} -Requires: python-novaclient >= 1:2.28.1 +Requires: python-novaclient >= 1:2.29.0 Requires: python-keystoneclient >= 1:1.6.0 -Requires: python-tooz >= 1.19.0 +Requires: python-keystoneauth1 >= 2.1.0 +Requires: python-tooz >= 1.28.0 Requires: libvirt-python >= 1.2.5 +Requires: libvirt-daemon %description compute OpenStack ceilometer provides services to measure and @@ -150,12 +158,13 @@ Group: Applications/System Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-polling = %{epoch}:%{version}-%{release} -Requires: python-novaclient >= 1:2.28.1 +Requires: python-novaclient >= 1:2.29.0 Requires: python-keystoneclient >= 1:1.6.0 -Requires: python-glanceclient >= 1:0.18.0 +Requires: python-keystoneauth1 >= 2.1.0 +Requires: python-glanceclient >= 1:2.0.0 Requires: python-swiftclient >= 2.2.0 -Requires: python-neutronclient >= 2.6.0 -Requires: python-tooz >= 1.19.0 +Requires: python-neutronclient >= 4.2.0 +Requires: python-tooz >= 1.28.0 %description central OpenStack ceilometer provides services to measure and @@ -174,7 +183,7 @@ Requires: %{name}-common = %{epoch}:%{version}-%{release} # Remove when all reference the notification package explicitly Requires: %{name}-notification -Requires: python-oslo-db >= 2.4.1 +Requires: python-oslo-db >= 4.1.0 Requires: python-pymongo >= 3.0.2 %description collector @@ -206,14 +215,14 @@ Group: Applications/System Requires: %{name}-common = %{epoch}:%{version}-%{release} -Requires: python-keystonemiddleware >= 2.0.0 -Requires: python-oslo-db >= 2.4.1 +Requires: python-keystonemiddleware >= 4.0.0 +Requires: python-oslo-db >= 4.1.0 Requires: python-pymongo >= 3.0.2 Requires: python-pecan >= 1.0.0 -Requires: python-wsme >= 0.7 +Requires: python-wsme >= 0.8 Requires: python-paste-deploy >= 1.5.0 -Requires: python-ceilometerclient >= 1.5.0 -Requires: python-tooz >= 1.19.0 +Requires: python-ceilometerclient >= 2.2.1 +Requires: python-tooz >= 1.28.0 %description api OpenStack ceilometer provides services to measure and @@ -221,22 +230,6 @@ collect metrics from OpenStack components. This package contains the ceilometer API service. - -%package alarm -Summary: OpenStack ceilometer alarm services -Group: Applications/System - -Requires: %{name}-common = %{epoch}:%{version}-%{release} -Requires: python-ceilometerclient >= 1.5.0 - -%description alarm -OpenStack ceilometer provides services to measure and -collect metrics from OpenStack components. - -This package contains the ceilometer alarm notification -and evaluation services. - - %package ipmi Summary: OpenStack ceilometer ipmi agent Group: Applications/System @@ -244,10 +237,11 @@ Group: Applications/System Requires: %{name}-common = %{epoch}:%{version}-%{release} Requires: %{name}-polling = %{epoch}:%{version}-%{release} -Requires: python-novaclient >= 1:2.28.1 +Requires: python-novaclient >= 1:2.29.0 Requires: python-keystoneclient >= 1:1.6.0 -Requires: python-neutronclient >= 2.6.0 -Requires: python-tooz >= 1.19.0 +Requires: python-keystoneauth1 >= 2.1.0 +Requires: python-neutronclient >= 4.2.0 +Requires: python-tooz >= 1.28.0 Requires: python-oslo-rootwrap >= 2.0.0 Requires: ipmitool @@ -266,10 +260,12 @@ Group: Applications/System Requires: %{name}-common = %{epoch}:%{version}-%{release} -Requires: python-novaclient >= 1:2.28.1 +Requires: python-novaclient >= 1:2.29.0 Requires: python-keystoneclient >= 1:1.6.0 -Requires: python-glanceclient >= 1:0.18.0 +Requires: python-keystoneauth1 >= 2.1.0 +Requires: python-glanceclient >= 1:2.0.0 Requires: python-swiftclient >= 2.2.0 +Requires: python-tooz >= 1.28.0 Requires: libvirt-python >= 1.2.5 %description polling @@ -359,7 +355,6 @@ install -d -m 755 %{buildroot}%{_sysconfdir}/sudoers.d install -d -m 755 %{buildroot}%{_sysconfdir}/sysconfig install -p -D -m 640 %{SOURCE1} %{buildroot}%{_datadir}/ceilometer/ceilometer-dist.conf install -p -D -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sudoers.d/ceilometer -install -p -D -m 644 %{SOURCE5} %{buildroot}%{_sysconfdir}/sysconfig/openstack-ceilometer-polling install -p -D -m 640 etc/ceilometer/ceilometer.conf.sample %{buildroot}%{_sysconfdir}/ceilometer/ceilometer.conf install -p -D -m 640 etc/ceilometer/policy.json %{buildroot}%{_sysconfdir}/ceilometer/policy.json install -p -D -m 640 etc/ceilometer/pipeline.yaml %{buildroot}%{_sysconfdir}/ceilometer/pipeline.yaml @@ -375,11 +370,9 @@ install -p -D -m 755 %{SOURCE10} %{buildroot}%{_initrddir}/%{name}-api install -p -D -m 755 %{SOURCE11} %{buildroot}%{_initrddir}/%{name}-collector install -p -D -m 755 %{SOURCE12} %{buildroot}%{_initrddir}/%{name}-compute install -p -D -m 755 %{SOURCE13} %{buildroot}%{_initrddir}/%{name}-central -install -p -D -m 755 %{SOURCE14} %{buildroot}%{_initrddir}/%{name}-alarm-notifier -install -p -D -m 755 %{SOURCE15} %{buildroot}%{_initrddir}/%{name}-alarm-evaluator -install -p -D -m 755 %{SOURCE16} %{buildroot}%{_initrddir}/%{name}-notification -install -p -D -m 755 %{SOURCE17} %{buildroot}%{_initrddir}/%{name}-ipmi -install -p -D -m 755 %{SOURCE18} %{buildroot}%{_initrddir}/%{name}-polling +install -p -D -m 755 %{SOURCE14} %{buildroot}%{_initrddir}/%{name}-notification +install -p -D -m 755 %{SOURCE15} %{buildroot}%{_initrddir}/%{name}-ipmi +install -p -D -m 755 %{SOURCE16} %{buildroot}%{_initrddir}/%{name}-polling # Install upstart jobs examples install -d -m 755 %{buildroot}%{_datadir}/ceilometer @@ -397,11 +390,9 @@ install -p -D -m 644 %{SOURCE10} %{buildroot}%{_unitdir}/%{name}-api.service install -p -D -m 644 %{SOURCE11} %{buildroot}%{_unitdir}/%{name}-collector.service install -p -D -m 644 %{SOURCE12} %{buildroot}%{_unitdir}/%{name}-compute.service install -p -D -m 644 %{SOURCE13} %{buildroot}%{_unitdir}/%{name}-central.service -install -p -D -m 644 %{SOURCE14} %{buildroot}%{_unitdir}/%{name}-alarm-notifier.service -install -p -D -m 644 %{SOURCE15} %{buildroot}%{_unitdir}/%{name}-alarm-evaluator.service -install -p -D -m 644 %{SOURCE16} %{buildroot}%{_unitdir}/%{name}-notification.service -install -p -D -m 644 %{SOURCE17} %{buildroot}%{_unitdir}/%{name}-ipmi.service -install -p -D -m 644 %{SOURCE18} %{buildroot}%{_unitdir}/%{name}-polling.service +install -p -D -m 644 %{SOURCE14} %{buildroot}%{_unitdir}/%{name}-notification.service +install -p -D -m 644 %{SOURCE15} %{buildroot}%{_unitdir}/%{name}-ipmi.service +install -p -D -m 644 %{SOURCE16} %{buildroot}%{_unitdir}/%{name}-polling.service %endif # Install logrotate @@ -437,9 +428,6 @@ exit 0 %post central %systemd_post %{name}-central.service -%post alarm -%systemd_post %{name}-alarm-notifier.service %{name}-alarm-evaluator.service - %post ipmi %systemd_post %{name}-alarm-ipmi.service @@ -461,9 +449,6 @@ exit 0 %preun central %systemd_preun %{name}-central.service -%preun alarm -%systemd_preun %{name}-alarm-notifier.service %{name}-alarm-evaluator.service - %preun ipmi %systemd_preun %{name}-ipmi.service @@ -485,9 +470,6 @@ exit 0 %postun central %systemd_postun_with_restart %{name}-central.service -%postun alarm -%systemd_postun_with_restart %{name}-alarm-notifier.service %{name}-alarm-evaluator.service - %postun ipmi %systemd_postun_with_restart %{name}-ipmi.service @@ -509,6 +491,7 @@ exit 0 %dir %attr(0755, ceilometer, root) %{_localstatedir}/log/ceilometer %{_bindir}/ceilometer-dbsync +%{_bindir}/ceilometer-db-legacy-clean %{_bindir}/ceilometer-expirer %{_bindir}/ceilometer-send-sample @@ -553,14 +536,6 @@ exit 0 %files central %{_unitdir}/%{name}-central.service - -%files alarm -%{_bindir}/ceilometer-alarm-notifier -%{_bindir}/ceilometer-alarm-evaluator -%{_unitdir}/%{name}-alarm-notifier.service -%{_unitdir}/%{name}-alarm-evaluator.service - - %files ipmi %config(noreplace) %attr(-, root, ceilometer) %{_sysconfdir}/ceilometer/rootwrap.conf %config(noreplace) %attr(-, root, ceilometer) %{_sysconfdir}/ceilometer/rootwrap.d/ipmi.filters @@ -570,11 +545,22 @@ exit 0 %files polling %{_bindir}/ceilometer-polling -%attr(-, root, ceilometer) %{_sysconfdir}/sysconfig/openstack-ceilometer-polling %{_unitdir}/%{name}-polling.service %changelog +* Mon May 30 2016 Mikhail Ivanov - 1:7.0.0~b2-1.el7 +- Remove hardcoded openstack-ceilometer-polling file + LP #1586359 + +* Fri May 13 2016 Mikhail Ivanov - 1:6.0.0-1.el7 +- Update version to 6.0.0 +- Update build and runtime dependencies according to mitaka + +* Wed Mar 30 2016 Mikhail Ivanov - 1:6.0.0.0rc1-1.el7 +- Update build and runtime dependencies according to mitaka +- Remove *-alarm package (now known as aodh package) + * Mon Sep 28 2015 Daniil Trishkin - 1:5.0.0.0rc1-1%{?dist}~mos8.0.1 - Update for Liberty - Update requirements according to global requirements of Liberty diff --git a/xenial/debian/README.Debian b/xenial/debian/README.Debian new file mode 100644 index 0000000..ca0ec7d --- /dev/null +++ b/xenial/debian/README.Debian @@ -0,0 +1,2 @@ +In order to configure both the agents and collector you have to put notification_topics 'notifications,glance_notifications' +in your /etc/nova/nova.conf. diff --git a/xenial/debian/ceilometer-agent-central.init.in b/xenial/debian/ceilometer-agent-central.init.in new file mode 100644 index 0000000..acdebbd --- /dev/null +++ b/xenial/debian/ceilometer-agent-central.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-agent-central +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb rabbitmq-server +# Should-Stop: mongodb rabbitmq-server +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: ceilometer central agent +# Description: ceilometer central agent +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer Agent Central" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-polling +DAEMON_ARGS=" --polling-namespaces central" diff --git a/xenial/debian/ceilometer-agent-central.manpages b/xenial/debian/ceilometer-agent-central.manpages new file mode 100644 index 0000000..5279796 --- /dev/null +++ b/xenial/debian/ceilometer-agent-central.manpages @@ -0,0 +1 @@ +debian/mans/ceilometer-agent-central.8 diff --git a/xenial/debian/ceilometer-agent-central.postrm b/xenial/debian/ceilometer-agent-central.postrm new file mode 100644 index 0000000..410f1f9 --- /dev/null +++ b/xenial/debian/ceilometer-agent-central.postrm @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ "${1}" = purge ] ; then + rm -f /var/log/ceilometer/ceilometer-agent-central.log* + [ -d /var/log/ceilometer ] && rmdir --ignore-fail-on-non-empty /var/log/ceilometer +fi + +#DEBHELPER# diff --git a/xenial/debian/ceilometer-agent-compute.init.in b/xenial/debian/ceilometer-agent-compute.init.in new file mode 100644 index 0000000..1707538 --- /dev/null +++ b/xenial/debian/ceilometer-agent-compute.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-agent-compute +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb rabbitmq-server +# Should-Stop: mongodb rabbitmq-server +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: ceilometer central compute +# Description: ceilometer central compute +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer Agent Compute" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-polling +DAEMON_ARGS=" --polling-namespaces compute" diff --git a/xenial/debian/ceilometer-agent-compute.manpages b/xenial/debian/ceilometer-agent-compute.manpages new file mode 100644 index 0000000..ee38e63 --- /dev/null +++ b/xenial/debian/ceilometer-agent-compute.manpages @@ -0,0 +1 @@ +debian/mans/ceilometer-agent-compute.8 diff --git a/xenial/debian/ceilometer-agent-compute.postrm b/xenial/debian/ceilometer-agent-compute.postrm new file mode 100644 index 0000000..4afe19d --- /dev/null +++ b/xenial/debian/ceilometer-agent-compute.postrm @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ "${1}" = purge ] ; then + rm -f /var/log/ceilometer/ceilometer-agent-compute.log* + [ -d /var/log/ceilometer ] && rmdir --ignore-fail-on-non-empty /var/log/ceilometer +fi + +#DEBHELPER# diff --git a/xenial/debian/ceilometer-agent-ipmi.init.in b/xenial/debian/ceilometer-agent-ipmi.init.in new file mode 100644 index 0000000..6f1c590 --- /dev/null +++ b/xenial/debian/ceilometer-agent-ipmi.init.in @@ -0,0 +1,18 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-agent-ipmi +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb postgresql mysql keystone rabbitmq-server ntp +# Should-Stop: mongodb postgresql mysql keystone rabbitmq-server ntp +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Ceilometer Agent IPMI +# Description: Ceilometer Agent IPMI +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer Agent IPMI" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-polling +DAEMON_ARGS=" --polling-namespaces ipmi" diff --git a/xenial/debian/ceilometer-agent-ipmi.postrm b/xenial/debian/ceilometer-agent-ipmi.postrm new file mode 100644 index 0000000..d43d6ba --- /dev/null +++ b/xenial/debian/ceilometer-agent-ipmi.postrm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ "${1}" = purge ] ; then + rm -f /var/log/ceilometer/ceilometer-agent-ipmi.log* + [ -d /var/log/ceilometer ] && rmdir --ignore-fail-on-non-empty /var/log/ceilometer +fi + +#DEBHELPER# + +exit 0 diff --git a/xenial/debian/ceilometer-agent-notification.init.in b/xenial/debian/ceilometer-agent-notification.init.in new file mode 100644 index 0000000..595961c --- /dev/null +++ b/xenial/debian/ceilometer-agent-notification.init.in @@ -0,0 +1,17 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-agent-notification +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb rabbitmq-server +# Should-Stop: mongodb rabbitmq-server +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: ceilometer agent notification +# Description: ceilometer agent notification +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer Notification Agent" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-agent-notification diff --git a/xenial/debian/ceilometer-agent-notification.install b/xenial/debian/ceilometer-agent-notification.install new file mode 100644 index 0000000..cd893de --- /dev/null +++ b/xenial/debian/ceilometer-agent-notification.install @@ -0,0 +1 @@ +/usr/bin/ceilometer-agent-notification diff --git a/xenial/debian/ceilometer-agent-notification.postrm b/xenial/debian/ceilometer-agent-notification.postrm new file mode 100644 index 0000000..850a970 --- /dev/null +++ b/xenial/debian/ceilometer-agent-notification.postrm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ "${1}" = purge ] ; then + rm -f /var/log/ceilometer/ceilometer-agent-notification.log* + [ -d /var/log/ceilometer ] && rmdir --ignore-fail-on-non-empty /var/log/ceilometer +fi + +#DEBHELPER# + +exit 0 diff --git a/xenial/debian/ceilometer-api.config.in b/xenial/debian/ceilometer-api.config.in new file mode 100644 index 0000000..a2f6c30 --- /dev/null +++ b/xenial/debian/ceilometer-api.config.in @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +#PKGOS-INCLUDE# + +pkgos_register_endpoint_config ceilometer + +exit 0 diff --git a/xenial/debian/ceilometer-api.init.in b/xenial/debian/ceilometer-api.init.in new file mode 100644 index 0000000..875f721 --- /dev/null +++ b/xenial/debian/ceilometer-api.init.in @@ -0,0 +1,17 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-api +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb rabbitmq-server +# Should-Stop: mongodb rabbitmq-server +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: ceilometer api +# Description: ceilometer api +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer API" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-api diff --git a/xenial/debian/ceilometer-api.install b/xenial/debian/ceilometer-api.install new file mode 100644 index 0000000..308a676 --- /dev/null +++ b/xenial/debian/ceilometer-api.install @@ -0,0 +1 @@ +usr/bin/ceilometer-api diff --git a/xenial/debian/ceilometer-api.manpages b/xenial/debian/ceilometer-api.manpages new file mode 100644 index 0000000..1c1c5df --- /dev/null +++ b/xenial/debian/ceilometer-api.manpages @@ -0,0 +1 @@ +debian/mans/ceilometer-api.8 \ No newline at end of file diff --git a/xenial/debian/ceilometer-api.postinst.in b/xenial/debian/ceilometer-api.postinst.in new file mode 100644 index 0000000..49b55e6 --- /dev/null +++ b/xenial/debian/ceilometer-api.postinst.in @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +#PKGOS-INCLUDE# + +if [ "$1" = "configure" ] ; then + . /usr/share/debconf/confmodule + pkgos_register_endpoint_postinst ceilometer ceilometer metering "Ceilometer Metering Service" 8777 / + db_stop +fi + +#DEBHELPER# + +exit 0 diff --git a/xenial/debian/ceilometer-api.postrm b/xenial/debian/ceilometer-api.postrm new file mode 100644 index 0000000..8e034c2 --- /dev/null +++ b/xenial/debian/ceilometer-api.postrm @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ "${1}" = purge ] ; then + rm -f /var/log/ceilometer/ceilometer-api.log* + [ -d /var/log/ceilometer ] && rmdir --ignore-fail-on-non-empty /var/log/ceilometer +fi + +#DEBHELPER# diff --git a/xenial/debian/ceilometer-api.templates b/xenial/debian/ceilometer-api.templates new file mode 100644 index 0000000..c280254 --- /dev/null +++ b/xenial/debian/ceilometer-api.templates @@ -0,0 +1,48 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-english@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: ceilometer/register-endpoint +Type: boolean +Default: false +_Description: Register Ceilometer in the Keystone endpoint catalog? + Each OpenStack service (each API) should be registered in order to be + accessible. This is done using "keystone service-create" and "keystone + endpoint-create". This can be done automatically now. + . + Note that you will need to have an up and running Keystone server on which to + connect using the Keystone authentication token. + +Template: ceilometer/keystone-ip +Type: string +_Description: Keystone server IP address: + Please enter the IP address of the Keystone server, so that ceilometer-api can + contact Keystone to do the Ceilometer service and endpoint creation. + +Template: ceilometer/keystone-auth-token +Type: password +_Description: Keystone authentication token: + To configure its endpoint in Keystone, ceilometer-api needs the Keystone + authentication token. + +Template: ceilometer/endpoint-ip +Type: string +_Description: Ceilometer endpoint IP address: + Please enter the IP address that will be used to contact Ceilometer. + . + This IP address should be accessible from the clients that will use this + service, so if you are installing a public cloud, this should be a public + IP address. + +Template: ceilometer/region-name +Type: string +Default: regionOne +_Description: Name of the region to register: + OpenStack supports using availability zones, with each region representing + a location. Please enter the zone that you wish to use when registering the + endpoint. diff --git a/xenial/debian/ceilometer-collector.cron.daily b/xenial/debian/ceilometer-collector.cron.daily new file mode 100644 index 0000000..626e82a --- /dev/null +++ b/xenial/debian/ceilometer-collector.cron.daily @@ -0,0 +1,4 @@ +#!/bin/sh + +test -x /usr/bin/ceilometer-expirer || exit 0 +su -s /bin/sh -c "exec /usr/bin/ceilometer-expirer" ceilometer diff --git a/xenial/debian/ceilometer-collector.init.in b/xenial/debian/ceilometer-collector.init.in new file mode 100644 index 0000000..d8677ab --- /dev/null +++ b/xenial/debian/ceilometer-collector.init.in @@ -0,0 +1,17 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-collector +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb rabbitmq-server +# Should-Stop: mongodb rabbitmq-server +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: ceilometer collector +# Description: ceilometer collector +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer Collector" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-collector diff --git a/xenial/debian/ceilometer-collector.install b/xenial/debian/ceilometer-collector.install new file mode 100644 index 0000000..9a114b9 --- /dev/null +++ b/xenial/debian/ceilometer-collector.install @@ -0,0 +1 @@ +usr/bin/ceilometer-collector diff --git a/xenial/debian/ceilometer-collector.manpages b/xenial/debian/ceilometer-collector.manpages new file mode 100644 index 0000000..ad265b5 --- /dev/null +++ b/xenial/debian/ceilometer-collector.manpages @@ -0,0 +1 @@ +debian/mans/ceilometer-collector.8 \ No newline at end of file diff --git a/xenial/debian/ceilometer-collector.postrm b/xenial/debian/ceilometer-collector.postrm new file mode 100644 index 0000000..dd84d44 --- /dev/null +++ b/xenial/debian/ceilometer-collector.postrm @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ "${1}" = purge ] ; then + rm -f /var/log/ceilometer/ceilometer-collector.log* + [ -d /var/log/ceilometer ] && rmdir --ignore-fail-on-non-empty /var/log/ceilometer +fi + +#DEBHELPER# diff --git a/xenial/debian/ceilometer-common.config.in b/xenial/debian/ceilometer-common.config.in new file mode 100644 index 0000000..028d1d8 --- /dev/null +++ b/xenial/debian/ceilometer-common.config.in @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +#PKGOS-INCLUDE# + +db_input high ceilometer/configure_db || true +db_go || true +pkgos_rabbit_read_conf /etc/ceilometer/ceilometer.conf oslo_messaging_rabbit ceilometer +pkgos_read_admin_creds /etc/ceilometer/ceilometer.conf keystone_authtoken ceilometer + +exit 0 diff --git a/xenial/debian/ceilometer-common.install b/xenial/debian/ceilometer-common.install new file mode 100644 index 0000000..0053e34 --- /dev/null +++ b/xenial/debian/ceilometer-common.install @@ -0,0 +1,16 @@ +/usr/bin/ceilometer-dbsync +/usr/bin/ceilometer-db-legacy-clean +/usr/bin/ceilometer-expirer +/usr/bin/ceilometer-polling +/usr/bin/ceilometer-rootwrap +/usr/bin/ceilometer-send-sample +etc/ceilometer/api_paste.ini /etc/ceilometer +etc/ceilometer/ceilometer-config-generator.conf /etc/ceilometer +etc/ceilometer/event_definitions.yaml /etc/ceilometer +etc/ceilometer/event_pipeline.yaml /etc/ceilometer +etc/ceilometer/gnocchi_resources.yaml /etc/ceilometer +etc/ceilometer/pipeline.yaml /etc/ceilometer +etc/ceilometer/policy.json /etc/ceilometer +etc/ceilometer/rootwrap.conf /etc/ceilometer +etc/ceilometer/rootwrap.d/ipmi.filters /etc/ceilometer/rootwrap.d +tools/show_data.py usr/share/doc/ceilometer diff --git a/xenial/debian/ceilometer-common.logrotate b/xenial/debian/ceilometer-common.logrotate new file mode 100644 index 0000000..e7185b7 --- /dev/null +++ b/xenial/debian/ceilometer-common.logrotate @@ -0,0 +1,8 @@ +/var/log/ceilometer/*.log { + daily + missingok + compress + delaycompress + notifempty + copytruncate +} diff --git a/xenial/debian/ceilometer-common.postinst.in b/xenial/debian/ceilometer-common.postinst.in new file mode 100644 index 0000000..623271b --- /dev/null +++ b/xenial/debian/ceilometer-common.postinst.in @@ -0,0 +1,61 @@ +#!/bin/sh + +set -e + +#PKGOS-INCLUDE# + +# We need to do that for ceilometer-agent-compute +libvirt_user_group () { + if getent group libvirt ; then + LIBVIRT_GROUP=libvirt + elif getent group libvirtd ; then + LIBVIRT_GROUP=libvirtd + else + if dpkg-vendor --derives-from ubuntu ; then + LIBVIRT_GROUP=libvirtd + else + LIBVIRT_GROUP=libvirt + fi + fi + + if ! getent group ${LIBVIRT_GROUP} >/dev/null; then + addgroup --system ${LIBVIRT_GROUP} + fi + + # user and group libvirt runs qemu/kvm instances with + if ! getent group kvm >/dev/null; then + addgroup --quiet --system kvm + fi + if ! getent passwd libvirt-qemu >/dev/null; then + adduser --quiet \ + --system \ + --ingroup kvm \ + --quiet \ + --disabled-login \ + --disabled-password \ + --home /var/lib/libvirt \ + --no-create-home \ + -gecos "Libvirt Qemu" \ + libvirt-qemu + fi +} + +if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ] ; then + . /usr/share/debconf/confmodule + pkgos_adduser nova + pkgos_var_user_group ceilometer + libvirt_user_group + adduser ceilometer nova || true + adduser ceilometer ${LIBVIRT_GROUP} || true + pkgos_write_new_conf ceilometer ceilometer.conf + pkgos_rabbit_write_conf /etc/ceilometer/ceilometer.conf oslo_messaging_rabbit ceilometer + pkgos_write_admin_creds /etc/ceilometer/ceilometer.conf keystone_authtoken ceilometer + db_get ceilometer/configure_db + if [ "$RET" = "true" ]; then + ceilometer-dbsync || true + fi +fi + +#DEBHELPER# + +exit 0 diff --git a/xenial/debian/ceilometer-common.postrm b/xenial/debian/ceilometer-common.postrm new file mode 100644 index 0000000..5476688 --- /dev/null +++ b/xenial/debian/ceilometer-common.postrm @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + +if [ "${1}" = "purge" ] ; then + rm -f /etc/ceilometer/ceilometer.conf + rmdir --ignore-fail-on-non-empty /etc/ceilometer || true + rmdir --ignore-fail-on-non-empty /var/lib/nova/cache || true + rmdir --ignore-fail-on-non-empty /var/lib/nova || true + rmdir --ignore-fail-on-non-empty /var/log/nova || true + rm -rf /var/lib/ceilometer /var/log/ceilometer +fi + +#DEBHELPER# + +exit 0 diff --git a/xenial/debian/ceilometer-common.templates b/xenial/debian/ceilometer-common.templates new file mode 100644 index 0000000..9c2b22e --- /dev/null +++ b/xenial/debian/ceilometer-common.templates @@ -0,0 +1,77 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-english@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: ceilometer/configure_db +Type: boolean +Default: false +_Description: Perform automatic dbsync for Ceilometer? + Ceilometer can automatically run ceilometer-dbsync after installation. For it + to work, you need an up and running mongodb-server. + . + You can change this setting later on by running "dpkg-reconfigure -plow + ceilometer". + + +Template: ceilometer/rabbit_host +Type: string +Default: localhost +_Description: IP address of your RabbitMQ host: + In order to interoperate with other components of OpenStack, this package + needs to connect to a central RabbitMQ server. + . + Please specify the IP address of that server. + +Template: ceilometer/rabbit_userid +Type: string +Default: guest +_Description: Username for connection to the RabbitMQ server: + In order to interoperate with other components of OpenStack, this package + needs to connect to a central RabbitMQ server. + . + Please specify the username used to connect to the RabbitMQ server. + +Template: ceilometer/rabbit_password +Type: password +_Description: Password for connection to the RabbitMQ server: + In order to interoperate with other components of OpenStack, this package + needs to connect to a central RabbitMQ server. + . + Please specify the password used to connect to the RabbitMQ server. + +Template: ceilometer/auth-host +Type: string +Default: 127.0.0.1 +_Description: Authentication server hostname: + Please specify the hostname of the authentication server for Ceilometer. + Typically this is also the hostname of the OpenStack Identity Service + (Keystone). + +Template: ceilometer/admin-tenant-name +Type: string +Default: admin +# Translators: a "tenant" in OpenStack world is +# an entity that contains one or more username/password couples. +# It's typically the tenant that will be used for billing. Having more than one +# username/password is very helpful in larger organization. +# You're advised to either keep "tenant" without translating it +# or keep it parenthezised. Example for French: +# locataire ("tenant") +_Description: Authentication server tenant name: + Please specify the authentication server tenant name. + +Template: ceilometer/admin-user +Type: string +Default: admin +_Description: Authentication server username: + Please specify the username to use with the authentication server. + +Template: ceilometer/admin-password +Type: password +_Description: Authentication server password: + Please specify the password to use with the authentication server. diff --git a/xenial/debian/ceilometer-doc.doc-base b/xenial/debian/ceilometer-doc.doc-base new file mode 100644 index 0000000..49284de --- /dev/null +++ b/xenial/debian/ceilometer-doc.doc-base @@ -0,0 +1,9 @@ +Document: ceilometer-doc +Title: Ceilometer Documentation +Author: OpenStack +Abstract: Sphinx documentation for Ceilometer +Section: Programming/Python + +Format: HTML +Index: /usr/share/doc/ceilometer-doc/html/index.html +Files: /usr/share/doc/ceilometer-doc/html/* diff --git a/xenial/debian/ceilometer-polling.init.in b/xenial/debian/ceilometer-polling.init.in new file mode 100644 index 0000000..8c0c906 --- /dev/null +++ b/xenial/debian/ceilometer-polling.init.in @@ -0,0 +1,17 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: ceilometer-polling +# Required-Start: $network $local_fs $remote_fs $syslog +# Required-Stop: $remote_fs +# Should-Start: mongodb rabbitmq-server +# Should-Stop: mongodb rabbitmq-server +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: ceilometer polling +# Description: ceilometer polling +### END INIT INFO + +# Author: Thomas Goirand +DESC="OpenStack Ceilometer Polling" +PROJECT_NAME=ceilometer +NAME=${PROJECT_NAME}-polling diff --git a/xenial/debian/changelog b/xenial/debian/changelog new file mode 100644 index 0000000..6dc4dbd --- /dev/null +++ b/xenial/debian/changelog @@ -0,0 +1,520 @@ +ceilometer (1:7.0.0~b2-1~u16.04+mos1) mos10.0; urgency=medium + + * Update ceilometer to v7.0.0.0b2 + * Update build and runtime dependencies according to global-requirements + + -- Mikhail Ivanov Mon, 25 Jul 2016 13:55:24 +0300 + +ceilometer (1:6.0.0~rc1-1~u14.04+mos1) mos9.0; urgency=medium + + * Update ceilometer to v6.0.0.0rc1 + * Update build and runtime dependencies according to global-requirements + + -- Mikhail Ivanov Fri, 25 Mar 2016 18:01:15 +0300 + +ceilometer (1:6.0.0~b2-1~u14.04+mos1) mos9.0; urgency=medium + + * Synchronize build scripts from Debian. + Source: https://anonscm.debian.org/git/openstack/ceilometer.git + Commit: c7caa6f0ab1349e09745c17c600eb6b5d7532e4f + + -- Daniil Trishkin Thu, 04 Feb 2016 13:13:43 +0000 + +ceilometer (1:6.0.0~b2-1) experimental; urgency=medium + + * New upstream release. + * Fixed (build-)depends for this release. + * The alarm packages are now transition packages to Aodh. + * Fixed debian/copyright ordering. + * Updated namespaces when generating the config file. + + -- Thomas Goirand Tue, 08 Dec 2015 11:53:07 +0100 + +ceilometer (1:6.0.0~b1-1~u14.04+mos1) mos9.0; urgency=medium + + * Update runtime requirements according to global requirements of Mitaka + * Update build depends according to test requirements of the project + * d/ceilometer-common.install: + - Remove gabbi_pipeline.yaml + because it's only for tests + - Remove gnocchi_archive_policy_map.yaml + - Add ceilometer-config-generator.conf + + -- Daniil Trishkin Wed, 20 Jan 2016 17:37:43 +0000 + +ceilometer (1:5.0.0-5~u14.04+mos1) mos8.0; urgency=medium + + * d/ceilometer-agent-*.init.in: Fix DAEMON_ARGS for + central, compute and ipmi agents. + * Source: https://anonscm.debian.org/git/openstack/ceilometer.git + * d/ceilometer-common.install: Add event_pipeline.yaml, gabbi_pipeline.yaml, + gnocchi_archive_policy_map.yaml, gnocchi_resources.yaml files + which are now available in stable/liberty branch. + + -- Ivan Udovichenko Tue, 10 Nov 2015 17:45:03 +0200 + +ceilometer (1:5.0.0-5) unstable; urgency=medium + + * Added q-text-as-data as depends for ceilometer-api. + + -- Thomas Goirand Tue, 03 Nov 2015 11:28:44 +0000 + +ceilometer (1:5.0.0-4) unstable; urgency=medium + + * Rebuilt with openstack-pkg-tools to use Keystone API v3. + + -- Thomas Goirand Tue, 03 Nov 2015 09:30:52 +0000 + +ceilometer (1:5.0.0-3~u14.04+mos1) mos8.0; urgency=medium + + * Preserve MOS changes. + + -- Ivan Udovichenko Tue, 27 Oct 2015 20:05:04 +0200 + +ceilometer (1:5.0.0-3) unstable; urgency=medium + + * Uploading to unstable. + + -- Thomas Goirand Fri, 16 Oct 2015 13:37:36 +0000 + +ceilometer (1:5.0.0-2) experimental; urgency=medium + + * Fixed ceilometer-common.postinst. + + -- Thomas Goirand Thu, 15 Oct 2015 19:41:24 +0200 + +ceilometer (1:5.0.0-1) experimental; urgency=medium + + * New upstream release. + * Now checking for libvirt or libvirtd group existance before guessing it + with "dpkg-vendor --derives-from ubuntu". + + -- Thomas Goirand Mon, 12 Oct 2015 10:50:26 +0200 + +ceilometer (1:5.0.0~rc1-1) experimental; urgency=medium + + * New upstream release. + * Get the ceilometer-agent-central use "ceilometer-polling --central". + * Get the ceilometer-agent-compute to use "ceilometer-polling --namespace + compute". + * Updated nl.po + * Now ceilometer-api depends on python-openstackclient. + * Fixed (build-)depends for this release. + + -- Thomas Goirand Sat, 12 Sep 2015 15:26:48 +0000 + +ceilometer (1:5.0.0~b2-1~u14.04+mos1) mos8.0; urgency=medium + + * Source: http://http.debian.net/debian/pool/main/c/ceilometer/ceilometer_5.0.0~b3-1.dsc + * Package version is lowered to satisfy the code version in 8.0 branch. + * d/rules: Add ceilometer.conf generated by oslo-config-generator to etc/ceilometer + * d/rules: Do not use any inner config modifications. Therefore preserve it for further modifications by deployment software. + + -- Ivan Udovichenko Thu, 24 Sep 2015 0:43:56 +0300 + +ceilometer (1:5.0.0~b3-1) experimental; urgency=medium + + * New upstream release. + * Fixed (build-)depends for this release. + * Realign Ceilometer packaging with MOS. + * Not using transition packages for sphinxcontrib stuff. + * Do not run functiona tests when building. + + -- Thomas Goirand Mon, 31 Aug 2015 20:55:14 +0200 + +ceilometer (1:5.0.0~b2-1) experimental; urgency=medium + + * New upstream release. + * Fixed (build-)depends for this release. + * Not using sphinxcontrib transition packages anymore. + + -- Thomas Goirand Wed, 05 Aug 2015 13:05:25 +0200 + +ceilometer (2015.1.0-6) unstable; urgency=medium + + * Updated French debconf translations thanks to Julien Patriarca + (Closes: #789902). + + -- Thomas Goirand Fri, 26 Jun 2015 15:11:26 +0200 + +ceilometer (2015.1.0-5) unstable; urgency=medium + + * Added debconf screen to ask if dbsync should be done (Closes: #787536). + * Put ceilometer-doc in the doc section. + + -- Thomas Goirand Thu, 11 Jun 2015 09:18:13 +0200 + +ceilometer (2015.1.0-4) unstable; urgency=medium + + * Added a documentation package with the sphinx docs. + + -- Thomas Goirand Thu, 04 Jun 2015 09:40:08 +0000 + +ceilometer (2015.1.0-3) unstable; urgency=medium + + * Added ceilometer-polling as new package. + * Removed Pre-Depends on dpkg. + + -- Thomas Goirand Thu, 04 Jun 2015 11:10:31 +0200 + +ceilometer (2015.1.0-2) unstable; urgency=medium + + * Added missing --namespace oslo.policy when generating default conf. + + -- Thomas Goirand Fri, 15 May 2015 16:22:51 +0200 + +ceilometer (2015.1.0-1) unstable; urgency=medium + + * New upstream release. + + -- Thomas Goirand Thu, 30 Apr 2015 21:17:17 +0000 + +ceilometer (2015.1~rc2-1) unstable; urgency=medium + + * New upstream release. + * Uploading to unstable. + * Reviewed (build-)depends for this release. + * Fixed default connection sed command line. + + -- Thomas Goirand Tue, 23 Dec 2014 14:47:10 +0800 + +ceilometer (2014.2.1-1) experimental; urgency=medium + + * New upstream release. + * Using auth_protocol=http by default. + + -- Thomas Goirand Sun, 14 Dec 2014 16:04:27 +0800 + +ceilometer (2014.2-3) experimental; urgency=medium + + * Added argparse & ordereddict to debian/pydist-overrides. + + -- Thomas Goirand Sun, 19 Oct 2014 10:58:28 +0000 + +ceilometer (2014.2-2) experimental; urgency=medium + + * Added missing python-posix-ipc as (build-)depends. + + -- Thomas Goirand Sun, 19 Oct 2014 15:13:52 +0800 + +ceilometer (2014.2-1) experimental; urgency=medium + + * New upstream release. + + -- Thomas Goirand Thu, 16 Oct 2014 14:47:57 +0000 + +ceilometer (2014.2~rc3-1) experimental; urgency=medium + + * New upstream release. + * Added missing configuration files in ceilometer-common. + * Removed Add_oslo.db_to_config_generator.patch applied upstream. + + -- Thomas Goirand Wed, 15 Oct 2014 14:02:53 +0800 + +ceilometer (2014.2~rc1-4) experimental; urgency=medium + + * Adds patch for generating the config file correctly. + + -- Thomas Goirand Fri, 10 Oct 2014 14:32:36 +0000 + +ceilometer (2014.2~rc1-3) experimental; urgency=medium + + * Using a single unique ceilometer-common logrotate file. + + -- Thomas Goirand Tue, 07 Oct 2014 13:45:40 +0800 + +ceilometer (2014.2~rc1-2) experimental; urgency=medium + + * Mangling upstream rc and beta versions in watch file. + * Added missing binaries. + * Now packaging ceilometer-agent-ipmi. + * Using templated init, upstart and systemd scripts from + openstack-pkg-tools >= 13. + * Fixed upstream files gone in debian/copyright. + * Standards-Version is now 3.9.6 (no change). + + -- Thomas Goirand Tue, 07 Oct 2014 00:49:22 +0000 + +ceilometer (2014.2~rc1-1) experimental; urgency=medium + + * New upstream release. + * Updated (build-)depends for this release. + + -- Thomas Goirand Wed, 24 Sep 2014 09:39:11 +0800 + +ceilometer (2014.2~b3-1) experimental; urgency=medium + + * New upstream release. + * Generating config file from script, since it's gone from upstream. + * Removed all patches, all applied upstream. + * Removed sources.json, as it's gone away upstream. + + -- Thomas Goirand Tue, 01 Jul 2014 15:01:05 +0800 + +ceilometer (2014.1.1-2) unstable; urgency=medium + + * Updated de.po thanks to Chris Leick (Closes: #751164). + + -- Thomas Goirand Wed, 11 Jun 2014 12:29:07 +0800 + +ceilometer (2014.1.1-1) unstable; urgency=medium + + * New upstream release. + * Bumped python-six minimal version to 1.6.0. + + -- Thomas Goirand Mon, 09 Jun 2014 21:46:22 +0800 + +ceilometer (2014.1-7) unstable; urgency=medium + + * Switched from restarting daemons to copytruncate for logrotate. + + -- Thomas Goirand Thu, 29 May 2014 13:51:53 +0800 + +ceilometer (2014.1-6) unstable; urgency=medium + + * Adds Add_aggregator_transformer.patch. + + -- Thomas Goirand Thu, 22 May 2014 00:06:15 +0800 + +ceilometer (2014.1-5) unstable; urgency=medium + + * Added Opencontrail_network_statistics_driver.patch. + * Added version depends for python-pysnmp4 (now >= 4.2.1). + + -- Thomas Goirand Wed, 21 May 2014 08:20:48 +0800 + +ceilometer (2014.1-4) unstable; urgency=medium + + * ceilometer now depends on version >= 2:2.17.0 of novaclient. + + -- Thomas Goirand Fri, 09 May 2014 22:59:36 +0800 + +ceilometer (2014.1-3) unstable; urgency=medium + + * Sets /etc/ceilometer/pipeline.yaml as conffile and remove handling from the + from maintainer scripts (Closes: #747216). + * Did the same for etc/ceilometer/{policy,sources}.json. + + -- Thomas Goirand Tue, 06 May 2014 23:00:59 +0800 + +ceilometer (2014.1-2) unstable; urgency=medium + + * Fixed long description typo (Closes: #745321). + * Delete var/lib/ceilometer & /var/log/ceilometer on purge (Closes: #732457). + * Updated it.po debconf translation (Closes: #745387). + + -- Thomas Goirand Fri, 02 May 2014 19:20:36 +0800 + +ceilometer (2014.1-1) unstable; urgency=medium + + * New upstream release. + * Uploading to unstable. + * Documents: using mongodb by default. + * Added selection of logging (to file or syslog) thanks to Sylvain Baubeau + . + + -- Thomas Goirand Fri, 18 Apr 2014 00:23:00 +0800 + +ceilometer (2014.1~rc1-1) experimental; urgency=low + + * New upstream release. + * Better testr/subunit output. + + -- Thomas Goirand Sun, 30 Mar 2014 13:25:59 +0800 + +ceilometer (2014.1~b3-1) experimental; urgency=low + + * New upstream release (Icehouse beta 3). + * Removes now applied upstream CVE-2013-6384 patch, refreshes + removes-sqlalchemy-restriction.patch + * Added msgpack_python python-msgpack in pydist-overrides, as otherwise the + python-msgpack-python is automatically added as dependency. + + -- Thomas Goirand Sat, 22 Mar 2014 14:19:25 +0800 + +ceilometer (2013.2.2-2) unstable; urgency=medium + + * Rebuilt Ceilometer with the new openstack-pkg-tools >= 9. + + -- Thomas Goirand Fri, 14 Feb 2014 17:24:30 +0000 + +ceilometer (2013.2.2-1) unstable; urgency=medium + + * New upstream point release. + * refreshed patches. + + -- Thomas Goirand Fri, 14 Feb 2014 10:19:27 +0800 + +ceilometer (2013.2.1-5) unstable; urgency=medium + + * Added missing postrotate scripts to restart daemons after logrotate + (Closes: #736930). + + -- Thomas Goirand Mon, 03 Feb 2014 15:41:29 +0800 + +ceilometer (2013.2.1-4) unstable; urgency=medium + + * Fix ${LIBVIRT_GROUP} when doing adduser ceilometer libvirt, so that it + * also + works on Ubuntu. + + -- Thomas Goirand Wed, 15 Jan 2014 17:37:07 +0800 + +ceilometer (2013.2.1-3) unstable; urgency=medium + + * Adds ceilometer/api/app.wsgi to /usr/share/ceilometer. + * Added/updated debconf templates thanks to: + - German: Martin E. Schauer (Closes: #734739) + - Swedish: Martin Bagge (Closes: #734583) + - French: Julien Patriarca (Closes: #733092) + - Spanish: Matias A. Bellone (Closes: #732534) + + -- Thomas Goirand Mon, 09 Dec 2013 17:09:32 +0800 + +ceilometer (2013.2-5) unstable; urgency=medium + + * Adds call to ceilometer-expirer every day. + + -- Thomas Goirand Thu, 05 Dec 2013 00:30:09 +0800 + +ceilometer (2013.2-4) unstable; urgency=low + + * CVE-2013-6384: applied upstream patch mongodb, db2: do not print full + URL in logs (Closes: #730227). + * Switches from msgpack-python to python-msgpack in dependencies, as the + package has been renamed (Closes: #730874). + * Updates some debconf translations, with warm thanks to: + - French, Julien Patriarca (Closes: #728771). + - Russian, Yuri Kozlov (Closes: #729774). + + -- Thomas Goirand Wed, 04 Dec 2013 19:41:05 +0800 + +ceilometer (2013.2-3) unstable; urgency=medium + + * Added missing (build-)depends: python-six (>= 1.4.1). + + -- Thomas Goirand Tue, 26 Nov 2013 22:37:47 +0800 + +ceilometer (2013.2-2) unstable; urgency=low + + * Added configuration of the keystone_authtoken through Debconf. + * Fixed ${LIBVIRT_GROUP} instead of just libvirt in postinst to have it work + as well on Ubuntu. + + -- Thomas Goirand Mon, 28 Oct 2013 22:34:50 +0800 + +ceilometer (2013.2-1) unstable; urgency=low + + * New upstream release. + * Uploading to unstable. + + -- Thomas Goirand Thu, 17 Oct 2013 23:37:48 +0800 + +ceilometer (2013.2~rc2-3) experimental; urgency=low + + * Ceilometer needs python-wsme at least 0.5b6, fixed (build-)depends. + + -- Thomas Goirand Thu, 17 Oct 2013 15:04:01 +0800 + +ceilometer (2013.2~rc2-2) experimental; urgency=low + + * Added the 2 new services: alarm-evaluator and alarm-notifier. + + -- Thomas Goirand Mon, 14 Oct 2013 23:52:15 +0800 + +ceilometer (2013.2~rc2-1) experimental; urgency=low + + * New upstream pre-release. + * Increased python-keystoneclient (build-)depends to 0.4.0. + + -- Thomas Goirand Mon, 14 Oct 2013 16:47:55 +0800 + +ceilometer (2013.2~rc1-1) experimental; urgency=low + + * New upstream pre-release 2013.2.rc1. + + -- Thomas Goirand Sat, 29 Jun 2013 01:45:17 +0800 + +ceilometer (2013.1.3-2) unstable; urgency=low + + * Added new Debconf translations: + - FR (Closes: #722418). + - DA (Closes: #721548). + - RU (Closes: #721302). + + -- Thomas Goirand Wed, 25 Sep 2013 16:19:22 +0800 + +ceilometer (2013.1.3-1) unstable; urgency=low + + * New upstream point release. + * Added several Debconf translations: + - Italian, thanks to Beatrice Torracca (Closes: #719709). + - Japanese, thanks to victory (Closes: #719722). + - Portuguese, thanks to the Traduz team (Closes: #720382). + - Czech, thanks to Michal Šimůnek (Closes: #721218). + + -- Thomas Goirand Fri, 30 Aug 2013 11:19:44 +0800 + +ceilometer (2013.1.2-4) unstable; urgency=low + + * Ran debconf-updatepo. + + -- Thomas Goirand Thu, 11 Jul 2013 01:07:43 +0800 + +ceilometer (2013.1.2-3) unstable; urgency=low + + * Added debian-l10n-english review (Closes #708747). + * Do not fail on directory removal on purge (Closes: #710910). + + -- Thomas Goirand Wed, 10 Jul 2013 14:17:03 +0800 + +ceilometer (2013.1.2-2) unstable; urgency=low + + * Added some Should-Start / Should-Stop so that Ceilometer starts after Mongo + and RabbitMQ. + * Removed version-depends for sqlalchemy. + + -- Thomas Goirand Sat, 22 Jun 2013 15:50:03 +0800 + +ceilometer (2013.1.2-1) unstable; urgency=low + + * New upstream release. + * Added configuration to each init scripts so that they log in their own log + file, added the corresponding purge postrm and logrotate. + * Removed applied upstream patch: modify-limitation-on-request-version.patch + * Build-depends on python-happybase and python-swift. + * Now runs the unit tests at build time. + + -- Thomas Goirand Mon, 03 Jun 2013 16:26:14 +0800 + +ceilometer (2013.1.1-1) unstable; urgency=low + + * New upstream release. + * rmdir --ignore-fail-on-non-empty of few folders owned by nova after purge. + Thanks to Andreas Beckmann for reporting (Closes: #709876). + * Ran wrap-and-sort to clean debian/control. + * Replaced pkgos_var_user_group nova by pkgos_adduser, as we don't want to + create the log / lib dirs of nova (Closes: #709876). + * Creates the correct libvirt group if the package is installed in Ubuntu. + * Bumped Standard-Version to 3.9.4. + + -- Thomas Goirand Mon, 27 May 2013 11:07:59 +0800 + +ceilometer (2013.1-3) unstable; urgency=low + + * Adds modify-limitation-on-request-version.patch without wich Ceilometer + doesn't work at all. + + -- Thomas Goirand Tue, 21 May 2013 17:27:07 +0800 + +ceilometer (2013.1-2) unstable; urgency=low + + * Uploading to unstable. + + -- Thomas Goirand Thu, 16 May 2013 07:44:07 +0000 + +ceilometer (2013.1-1) experimental; urgency=low + + * Initial release (Closes: #693406). + + -- Thomas Goirand Wed, 10 Apr 2013 13:19:50 +0800 diff --git a/xenial/debian/compat b/xenial/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/xenial/debian/compat @@ -0,0 +1 @@ +9 diff --git a/xenial/debian/control b/xenial/debian/control new file mode 100644 index 0000000..9333da4 --- /dev/null +++ b/xenial/debian/control @@ -0,0 +1,368 @@ +Source: ceilometer +Section: web +Priority: optional +Maintainer: PKG OpenStack +Uploaders: Thomas Goirand , +Build-Depends: debhelper (>= 9), + dh-python, + dh-systemd, + openstack-pkg-tools (>= 37~), + po-debconf, + python-all, + python-pbr (>= 1.8), + python-setuptools, + python-sphinx (>= 1.1.2), +Build-Depends-Indep: mongodb, + git, + python-awsauth, + python-babel (>= 1.3), + python-ceilometerclient (>= 2.2.1), + python-contextlib2 (>= 0.4.0), + python-cotyledon, + python-coverage (>= 3.6), + python-croniter, + python-dateutil (>= 2.4.2), + python-elasticsearch (>= 1.3.0), + python-fixtures (>= 1.3.1), + python-gabbi (>= 1.11.0), + python-glanceclient (>= 1:2.0.0), + python-gnocchiclient (>= 2.1.0), + python-hacking (>= 0.10.0), + python-happybase (>= 0.5), + python-httplib2 (>= 0.7.5), + python-jsonpath-rw-ext (>= 0.1.9), + python-jsonschema, + python-kafka, + python-keystoneauth1 (>= 2.1.0), + python-keystoneclient (>= 1:1.6.0), + python-keystonemiddleware (>= 4.0.0), + python-kombu, + python-lxml, + python-migrate (>= 0.9.6), + python-mock (>= 1.3), + python-msgpack (>= 0.4.0), + python-mysqldb, + python-neutronclient (>= 1:2.6.0), + python-novaclient (>= 2:2.29.0), + python-oslo.cache (>= 0.8.0), + python-oslo.concurrency (>= 3.5.0), + python-oslo.config (>= 1:3.7.0), + python-oslo.context (>= 0.2.0), + python-oslo.db (>= 4.1.0), + python-oslo.i18n (>= 2.1.0), + python-oslo.log (>= 1.14.0), + python-oslo.messaging (>= 4.0.0), + python-oslo.middleware (>= 3.0.0), + python-oslo.policy (>= 0.5.0), + python-oslo.reports (>= 0.6.0), + python-oslo.rootwrap (>= 2.0.0), + python-oslo.serialization (>= 1.10.0), + python-oslo.service (>= 1.0.0), + python-oslo.utils (>= 3.5.0), + python-oslo.vmware (>= 1.16.0), + python-oslosphinx (>= 2.5.0), + python-oslotest (>= 1.10.0), + python-pastedeploy, + python-pecan (>= 1.0.0), + python-psycopg2 (>= 2.5), + python-pymongo (>= 3.0.2), + python-pymysql (>= 0.6.2), + python-pysnmp4, + python-requests (>= 2.8.1), + python-retrying, + python-six (>= 1.9.0), + python-sphinxcontrib.httpdomain, + python-sphinxcontrib-pecanwsme (>= 0.8), + python-sqlalchemy (>= 1.0.10), + python-stevedore (>= 1.5.0), + python-swiftclient (>= 1:2.2.0), + python-tempest-lib (>= 0.13.0), + python-testscenarios (>= 0.4), + python-testtools (>= 1.4.0), + python-tooz (>= 1.28.0), + python-tz, + python-webob, + python-webtest (>= 2.0), + python-werkzeug, + python-wsme (>= 0.8), + python-yaml, + subunit, + testrepository, +Standards-Version: 3.9.6 +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/ceilometer.git;a=summary +Vcs-Git: git://anonscm.debian.org/openstack/ceilometer.git +Homepage: http://wiki.openstack.org/Ceilometer + +Package: python-ceilometer +Section: python +Architecture: all +Depends: libjs-jquery, + python-ceilometerclient (>= 2.2.1), + python-cotyledon, + python-dateutil (>= 2.4.2), + python-debtcollector (>= 1.2.0), + python-eventlet (>= 0.17.4), + python-futurist (>= 0.11.0), + python-glanceclient (>= 1:2.0.0), + python-greenlet (>= 0.3.2), + python-happybase (>= 0.5), + python-jsonpath-rw-ext (>= 0.1.9), + python-jsonschema (>= 2.0.0), + python-kafka (>= 0.9.5), + python-keystoneauth1 (>= 2.1.0), + python-keystoneclient (>= 1:1.6.0), + python-keystonemiddleware (>= 4.0.0), + python-kombu (>= 3.0.7), + python-lxml (>= 2.3), + python-migrate (>= 0.9.7), + python-msgpack (>= 0.4.0), + python-mysqldb, + python-neutronclient (>= 1:4.2.0), + python-novaclient (>= 2:2.29.0), + python-oslo.concurrency (>= 3.5.0), + python-oslo.config (>= 1:3.9.0), + python-oslo.context (>= 0.2.0), + python-oslo.db (>= 4.1.0), + python-oslo.i18n (>= 2.1.0), + python-oslo.log (>= 1.14.0), + python-oslo.messaging (>= 5.2.0), + python-oslo.middleware (>= 3.0.0), + python-oslo.policy (>= 0.5.0), + python-oslo.reports (>= 0.6.0), + python-oslo.rootwrap (>= 2.0.0), + python-oslo.serialization (>= 1.10.0), + python-oslo.service (>= 1.0.0), + python-oslo.utils (>= 3.5.0), + python-oslo.vmware (>= 1.16.0), + python-pastedeploy (>= 1.5.0), + python-pbr (>= 1.8), + python-pecan (>= 1.0.0), + python-pymongo (>= 3.0.2), + python-pymysql (>= 0.6.2), + python-pysnmp4 (>= 4.2.3), + python-requests (>= 2.8.1), + python-retrying (>= 1.2.3), + python-six (>= 1.9.0), + python-sqlalchemy (>= 1.0.10), + python-stevedore (>= 1.5.0), + python-swiftclient (>= 1:2.2.0), + python-tooz (>= 1.28.0), + python-tz (>= 2013.6), + python-webob (>= 1.2.3), + python-werkzeug (>= 0.7), + python-wsme (>= 0.8), + python-yaml (>= 3.1.0), + ${misc:Depends}, + ${python:Depends}, +Description: OpenStack efficient metering counters system - Python libraries + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the Python libraries that are needed for all parts of + Ceilometer. + +Package: ceilometer-common +Architecture: all +Depends: adduser, + dpkg-dev, + python-ceilometer (= ${binary:Version}), + ${misc:Depends}, + ${python:Depends}, +Provides: ${python:Provides}, +Description: OpenStack efficient metering counters system - common files + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains files that are needed for all parts of Ceilometer. + +Package: ceilometer-collector +Architecture: all +Depends: ceilometer-common (= ${binary:Version}), + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Suggests: mongodb, +Description: OpenStack efficient metering counters system - collector service + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the collector service. + +Package: ceilometer-polling +Architecture: all +Depends: ceilometer-common (= ${binary:Version}), + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Suggests: mongodb, +Description: OpenStack efficient metering counters system - polling service + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the polling service. + +Package: ceilometer-api +Architecture: all +Depends: adduser, + ceilometer-common (= ${binary:Version}), + debconf, + python-openstackclient (>= 2.0.0), + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Suggests: mongodb, q-text-as-data +Description: OpenStack efficient metering counters system (API service) + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the API service. + +Package: ceilometer-agent-compute +Architecture: all +Depends: ceilometer-common (= ${binary:Version}), + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Description: OpenStack efficient metering counters system - compute agent + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the compute agent. + +Package: ceilometer-agent-central +Architecture: all +Depends: ceilometer-common (= ${binary:Version}), + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Description: OpenStack efficient metering counters system - central agent + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the central agent. + +Package: ceilometer-agent-ipmi +Architecture: all +Depends: ceilometer-common (= ${binary:Version}), + ipmitool, + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Description: OpenStack efficient metering counters system - IPMI agent + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the IPMI agent daemon. + +Package: ceilometer-agent-notification +Architecture: all +Depends: ceilometer-common (= ${binary:Version}), + ${misc:Depends}, + ${ostack-lsb-base}, + ${python:Depends}, +Description: OpenStack efficient metering counters system - notification agent + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the notification agent daemon. + +Package: ceilometer-alarm-evaluator +Architecture: all +Depends: aodh-evaluator, + ${misc:Depends}, +Description: OpenStack efficient metering counters system - aodh-evaluator trans + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + This package is a dummy transition package to aodh-evaluator and can be safely + removed. + +Package: ceilometer-alarm-notifier +Architecture: all +Depends: aodh-notifier, + ${misc:Depends}, +Description: OpenStack efficient metering counters system - aodh-notifier trans + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + This package is a dummy transition package to aodh-notifier and can be safely + removed. + +Package: ceilometer-doc +Section: doc +Architecture: all +Depends: ${misc:Depends}, + ${sphinxdoc:Depends}, +Description: OpenStack efficient metering counters system - doc + Ceilometer aims to deliver a Single Point Of Contact for billing systems, + providing all the counters they need to establish customer billing, across + all current and future OpenStack components. The delivery of counters must be + traceable and auditable, the counters must be easily extensible to support new + projects, and agents doing data collections should be independent of the + overall system. + . + (A ceilometer is an instrument that measures cloud coverage.) + . + This package contains the documentation. diff --git a/xenial/debian/copyright b/xenial/debian/copyright new file mode 100644 index 0000000..eae8f56 --- /dev/null +++ b/xenial/debian/copyright @@ -0,0 +1,35 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ceilometer +Source: https://github.com/stackforge/ceilometer + +Files: * +Copyright: 2012 New Dream Network, LLC (DreamHost) + 2012 eNovance + 2012 Red Hat Inc. + 2010 United States Government + 2011 Cloudscaling Group, Inc + 2011 OpenStack LLC. + 2012 Nicolas Barcet for Canonical + 2012-2015, OpenStack Foundation +License: Apache-2.0 + +Files: debian/* +Copyright: 2012-2015, Canonical Ltd + 2012-2016, Thomas Goirand +License: Apache-2.0 + +License: Apache-2.0 + 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. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. diff --git a/xenial/debian/debian_control_vars b/xenial/debian/debian_control_vars new file mode 100644 index 0000000..d4e93e1 --- /dev/null +++ b/xenial/debian/debian_control_vars @@ -0,0 +1 @@ +ostack-lsb-base= lsb-base diff --git a/xenial/debian/gbp.conf b/xenial/debian/gbp.conf new file mode 100644 index 0000000..6fb07d6 --- /dev/null +++ b/xenial/debian/gbp.conf @@ -0,0 +1,9 @@ +[DEFAULT] +upstream-branch = master +debian-branch = debian/mitaka +upstream-tag = %(version)s +compression = xz + +[buildpackage] +export-dir = ../build-area/ +#cleaner = true diff --git a/xenial/debian/mans/ceilometer-agent-central.8 b/xenial/debian/mans/ceilometer-agent-central.8 new file mode 100644 index 0000000..4f1706f --- /dev/null +++ b/xenial/debian/mans/ceilometer-agent-central.8 @@ -0,0 +1,30 @@ +.TH ceilometer-agent-central 8 +.SH NAME +ceilometer-agent-central \- Please fill + +.SH SYNOPSIS +.B ceilometer-agent-central +.B ...params... + +.SH DESCRIPTION +.B ceilometer-agent-central + +Please fill in a long desc. + +.SH PARAMETERS + +.LP +.B param1 +.IP +Describe here param1 + +.SH EXAMPLE + +.LP +.B Example 1 +.IP +Example explanation + +.SH AUTHORS + +John Doe diff --git a/xenial/debian/mans/ceilometer-agent-compute.8 b/xenial/debian/mans/ceilometer-agent-compute.8 new file mode 100644 index 0000000..86abb0b --- /dev/null +++ b/xenial/debian/mans/ceilometer-agent-compute.8 @@ -0,0 +1,30 @@ +.TH ceilometer-agent-compute 8 +.SH NAME +ceilometer-agent-compute \- Please fill + +.SH SYNOPSIS +.B ceilometer-agent-compute +.B ...params... + +.SH DESCRIPTION +.B ceilometer-agent-compute + +Please fill in a long desc. + +.SH PARAMETERS + +.LP +.B param1 +.IP +Describe here param1 + +.SH EXAMPLE + +.LP +.B Example 1 +.IP +Example explanation + +.SH AUTHORS + +John Doe diff --git a/xenial/debian/mans/ceilometer-api.8 b/xenial/debian/mans/ceilometer-api.8 new file mode 100644 index 0000000..0427e00 --- /dev/null +++ b/xenial/debian/mans/ceilometer-api.8 @@ -0,0 +1,30 @@ +.TH ceilometer-api 8 +.SH NAME +ceilometer-api \- Please fill + +.SH SYNOPSIS +.B ceilometer-api +.B ...params... + +.SH DESCRIPTION +.B ceilometer-api + +Please fill in a long desc. + +.SH PARAMETERS + +.LP +.B param1 +.IP +Describe here param1 + +.SH EXAMPLE + +.LP +.B Example 1 +.IP +Example explanation + +.SH AUTHORS + +John Doe diff --git a/xenial/debian/mans/ceilometer-collector.8 b/xenial/debian/mans/ceilometer-collector.8 new file mode 100644 index 0000000..e221a86 --- /dev/null +++ b/xenial/debian/mans/ceilometer-collector.8 @@ -0,0 +1,30 @@ +.TH ceilometer-collector 8 +.SH NAME +ceilometer-collector \- Please fill + +.SH SYNOPSIS +.B ceilometer-collector +.B ...params... + +.SH DESCRIPTION +.B ceilometer-collector + +Please fill in a long desc. + +.SH PARAMETERS + +.LP +.B param1 +.IP +Describe here param1 + +.SH EXAMPLE + +.LP +.B Example 1 +.IP +Example explanation + +.SH AUTHORS + +John Doe diff --git a/xenial/debian/po/POTFILES.in b/xenial/debian/po/POTFILES.in new file mode 100644 index 0000000..b402812 --- /dev/null +++ b/xenial/debian/po/POTFILES.in @@ -0,0 +1,2 @@ +[type: gettext/rfc822deb] ceilometer-api.templates +[type: gettext/rfc822deb] ceilometer-common.templates diff --git a/xenial/debian/po/cs.po b/xenial/debian/po/cs.po new file mode 100644 index 0000000..8a686c7 --- /dev/null +++ b/xenial/debian/po/cs.po @@ -0,0 +1,264 @@ +# Czech PO debconf template translation of ceilometer. +# Copyright (C) 2013 Michal Simunek +# This file is distributed under the same license as the ceilometer package. +# Michal Simunek , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer 2013.1.2-4\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2013-08-29 10:31+0200\n" +"Last-Translator: Michal Simunek \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Zaregistrovat Ceilometer v katalogu koncových bodů Keystone?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Aby byla každá služba Openstack (každé API) přístupná, musí být " +"zaregistrována. To se provádí pomocí příkazů \"keystone service-create\" a " +"\"keystone endpoint-create\". Zvolte si, zda-li se tyto příkazy mají nyní " +"spustit." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Berte na vědomí, že musíte mít běžící server Keystone, na který se lze " +"připojit pomocí ověřovacího klíče pro Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "IP adresa serveru keystone:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Zadejte IP adresu serveru Keystone, aby se mohlo ceilometer-api spojit s " +"Keystone a provozovat službu Ceilometer a vytvářet koncové body." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Autentizační klíč pro Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Aby mohlo ceilometer-api nastavit v Keystone svůj koncový bod, potřebuje " +"autentizační klíč pro Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "IP adresa koncového bodu Ceilometer:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "Zadejte IP adresu, která se bude používat ke spojení s Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Tato IP adresa musí být přístupná z klientů, kteří budou tuto službu " +"používat, takže pokud instalujete veřejný cloud, musí to být veřejná IP " +"adresa." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Název registrované oblasti:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"Openstack lze využívat pomocí oblastí dostupnosti, přičemž každá oblast " +"představuje místo. Zadejte prosím oblast, kterou chcete použít při " +"registraci koncového bodu." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the IP address of that server." +msgstr "Zadejte IP adresu, která se bude používat ke spojení s Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the authentication server tenant name." +msgstr "Zadejte IP adresu, která se bude používat ke spojení s Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the username to use with the authentication server." +msgstr "Zadejte IP adresu, která se bude používat ke spojení s Ceilometer." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the password to use with the authentication server." +msgstr "Zadejte IP adresu, která se bude používat ke spojení s Ceilometer." diff --git a/xenial/debian/po/da.po b/xenial/debian/po/da.po new file mode 100644 index 0000000..524d95f --- /dev/null +++ b/xenial/debian/po/da.po @@ -0,0 +1,264 @@ +# Danish translation ceilometer. +# Copyright (C) 2014 ceilometer og nedenstående oversættere. +# This file is distributed under the same license as the ceilometer package. +# Joe Hansen (joedalton2@yahoo.dk), 2013, 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2014-02-22 12:42+0000\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Registrer Ceilometer i Keystones slutpunktskatalog?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Hver OpenStack-tjeneste (hver API) skal registreres for at være tilgængelig. " +"Dette gøres med »keystone service-create« og »keystone endpoint-create«, " +"hvilket nu kan udføres automatisk." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Bemærk at du skal have en op og kørende Keystoneserver, som du kan forbinde " +"til med Keystones godkendelsessymbol." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "IP-adresse for Keystoneserver:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Indtast venligst IP-adressen for Keystoneserveren, så at ceilometer-api kan " +"kontakte Keystone for at udføre Ceilometertjenesten og slutpunktsoprettelse." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Godkendelsessymbol for Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"For at konfigurere dets slutpunkt i Keystone, skal ceilometer bruge " +"Keystones godkendelsessymbol." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "IP-adresse for Ceilometers slutpunkt:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Indtast venligst IP-adressen som vil blive brugt til at kontakte Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Denne IP-adresse skal være tilgængelig fra klienterne som vil bruge denne " +"tjeneste, så hvis du installerer en offentlig sky, skal dette være en " +"offentlig IP-adresse." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Navn på regionen der skal registreres:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack understøtter at bruge tilgængelighedszoner, hvor hver region " +"repræsenterer et sted. Indtast venligst zonen, som du ønsker at bruge, når " +"du registrerer slutpunktet." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "IP-adresse for din RabbitMQ-vært:" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" +"Denne pakke skal kunne forbinde med en central RabbitMQ-server, or at " +"fungere med andre komponenter i OpenStack." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "Angiv venligst IP-adressen for den server." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "Brugernavn for forbindelsen til RabbitMQ-serveren:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Angiv venligst brugernavnet brugt til at forbinde til RabbitMQ-serveren." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "Adgangskode for forbindelsen til RabbitMQ-serveren:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" +"Angiv venligst adgangskoden brugt til at forbinde til RabbitMQ-serveren." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "Værtsnavn for godkendelsesserveren:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" +"Angiv venligst værtsnavnet for godkendelsesserveren for Ceilometer. Typisk " +"er dette også værtsnavnet for OpenStack Identity Service (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "Tenantnavn for godkendelseserveren:" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "Angiv venligst godkendelsesserverens tenantnavn." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "Brugernavn for godkendelseserveren:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "" +"Angiv venligst brugernavnet som vil blive brugt med godkendelseserveren." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "Adgangskode for godkendelsesserveren:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "" +"Angiv venligst adgangskoden som vil blive brugt med godkendelsesserveren." diff --git a/xenial/debian/po/de.po b/xenial/debian/po/de.po new file mode 100644 index 0000000..ebeb055 --- /dev/null +++ b/xenial/debian/po/de.po @@ -0,0 +1,274 @@ +# German translation of ceilometer debconf templates +# This file is distributed under the same license as the ceilometer package. +# Copyright: Martin Eberhard Schauer , 2013, +# Chris Leick , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer 2014.1-7\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2014-06-04 14:37+0100\n" +"Last-Translator: Chris Leick \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Ceilometer im Keystone-Endpunktkatalog registrieren?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Jeder OpenStack-Dienst (jedes API) sollte registriert werden, damit darauf " +"zugegriffen werden kann. Dies wird mittels »keystone service-create« und " +"»keystone endpoint-create« erreicht und kann nun automatisch erledigt werden." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Beachten Sie, dass Sie einen laufenden Keystone-Server benötigen, mit dem " +"Sie sich unter Nutzung des Keystone-Authentifizierungs-Tokens verbinden " +"können." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "IP-Adresse des Keystone-Servers:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Geben Sie bitte die IP-Adresse des Keystone-Servers an, damit Ceilometer-api " +"Keystone kontaktieren kann, um den Ceilometer-Dienst und -Endpunkt zu " +"erstellen" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Keystone-Authentifizierungs-Token:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Um seinen Keystone-Endpunkt einzurichten, benötigt Ceilometer-api das " +"Keystone-Authentifizierungs-Token." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "IP-Adresse des Ceilometer-Endpunkts:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Bitte geben Sie bitte die IP-Adresse an, die für den Kontakt mit Ceilometer " +"genutzt wird." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Diese IP-Adresse sollte von den Clients erreichbar sein, die diesen Dienst " +"nutzen. Falls Sie eine öffentliche Cloud installieren, sollte dies eine " +"öffentliche IP-Adresse sein." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Name der zu registrierenden Region:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack unterstützt die Verwendung von Verfügbarkeitszonen, in denen jede " +"Region einen Ort darstellt. Geben Sie bitte die Zone an, die Sie bei der " +"Registrierung des Endpunkts verwenden wollen." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "IP-Adresse Ihres RabbitMQ-Rechners:" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" +"Um mit weiteren Bestandteilen von OpenStack zusammenzuarbeiten, muss sich " +"dieses Paket mit einem zentralen RabbitMQ-Server verbinden." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "Geben Sie bitte die IP-Adresse dieses Servers an." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "Benutzername für die Verbindung mit dem RabbitMQ-Server:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Bitte geben Sie den Benutzernamen ein, den Sie zum Verbinden mit dem " +"RabbitMQ-Server verwenden." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "Passwort für die Verbindung mit dem RabbitMQ-Server:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" +"Bitte geben Sie das Passwort ein, das Sie zum Verbinden mit dem RabbitMQ-" +"Server verwenden." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "Rechnername des Authentifizierungsservers:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" +"Bitte geben Sie den Rechnernamen Ihres Ceilometer-Authentifizierungsservers " +"an. Typischerweise ist das gleichzeitig der Rechnername Ihres OpenStack-" +"Identitätsdienstes (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "Tenant-Name des Authentifizierungsservers:" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "Bitte geben Sie den Tenant-Namen des Authentifizierungsservers an." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "Benutzername des Authentifizierungsservers:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "" +"Bitte geben Sie den Benutzernamen an, der für den Authentifizierungsserver " +"benutzt wird." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "Passwort des Authentifizierungsservers:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "" +"Bitte geben Sie das Passwort an, das für den Authentifizierungsserver " +"benutzt wird." diff --git a/xenial/debian/po/es.po b/xenial/debian/po/es.po new file mode 100644 index 0000000..3768f48 --- /dev/null +++ b/xenial/debian/po/es.po @@ -0,0 +1,282 @@ +# ceilometer po-debconf translation to Spanish +# Copyright (C) 2013 Software in the Public Interest +# This file is distributed under the same license as the ceilometer package. +# +# Changes: +# - Initial translation +# Matías A. Bellone , 2013 +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/coordinacion +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer 2013.1.2-4\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2013-12-08 21:29-0300\n" +"Last-Translator: Matías Bellone \n" +"Language-Team: Debian l10n Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "" +"¿Desea registrar Ceilometer en el catálogo de puntos finales de Keystone?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Debe registrar cada uno de los servicios OpenStack (cada API) para que sean " +"accesibles. Esto se lleva a cabo mediante las órdenes «keystone service-" +"create» y «keystone endpoint-create». Puede hacerlo ahora automáticamente." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Tenga en cuenta que necesitará disponer de un servidor Keystone en ejecución " +"al que conectarse utilizando el token de autenticación de Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "Dirección IP del servidor Keystone:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Introduzca la dirección IP del servidor Keystone para que ceilometer-api " +"pueda contactar con Keystone para realizar el servicio Ceilometer y crear el " +"punto final." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Token de autenticación de Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Para configurar su punto final en Keystone, ceilometer-api necesita el token " +"de autenticación de Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "Dirección IP del punto final de Ceilometer:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Introduzca la dirección IP que se utilizará para contactar con Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Esta dirección IP debe ser accesible desde los clientes que usarán este " +"servicio, por lo que si está instalando una nube pública, debería ser una " +"dirección IP pública." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Nombre de la región a registrar:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack puede utilizarse con zonas de disponibilidad, donde cada región " +"representa una ubicación. Introduzca la zona que desea utilizar cuando " +"registre el punto final." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the IP address of that server." +msgstr "" +"Introduzca la dirección IP que se utilizará para contactar con Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "" diff --git a/xenial/debian/po/fr.po b/xenial/debian/po/fr.po new file mode 100644 index 0000000..d4db674 --- /dev/null +++ b/xenial/debian/po/fr.po @@ -0,0 +1,277 @@ +# Translation of ceilometer debconf templates to French. +# Copyright (C) 2013, French l10n team +# This file is distributed under the same license as the CEILOMETER package. +# Julien Patriarca , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2015-06-15 17:32+0100\n" +"Last-Translator: Julien Patriarca \n" +"Language-Team: FRENCH \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.7.7\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "" +"Enregistrer Ceilometer dans le catalogue de points d'accès de Keystone ?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Chaque service OpenStack (chaque API) doit être enregistré pour être " +"accessible. Cela peut être fait en utilisant « keystone service-create » et " +"« keystone endpoint-create ». Cela peut être fait automatiquement maintenant." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Veuillez noter que vous aurez besoin d'avoir un serveur Keystone fonctionnel " +"sur lequel se connecter en utilisant le jeton d'authentification Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "Adresse IP du serveur Keystone :" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Veuillez indiquer l'adresse IP du serveur Keystone, pour que l'api de " +"Ceilometer puisse contacter Keystone pour établir le service Ceilometer et " +"créer le point d'accès." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Jeton d'authentification Keystone : " + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Pour configurer son point d'accès dans Keystone, l’api de Ceilometer a " +"besoin du jeton d'authentification Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "Adresse IP du point d'accès Ceilometer :" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Veuillez indiquer l'adresse IP qui sera utilisée pour contacter Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Cette adresse IP doit être accessible depuis les clients qui utiliseront ce " +"service, donc si vous installez un nuage public, ce devra être une adresse " +"IP publique." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Nom de la région à enregistrer :" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack prend en charge l'utilisation de zones disponibles, avec chaque " +"région représentant un lieu. Veuillez entrer une zone que vous souhaitez " +"utiliser lors de l'enregistrement d'un point d'accès." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "Exécuter dbsync automatiquement pour Ceilometer ?" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" +"Ceilometer peut exécuter automatiquement ceilometer-dbsync après " +"l'installation. Pour que cela soit possible, mongodb-server doit être " +"préalablement installé et configuré" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" +"Vous pouvez changer ce réglage plus tard avec la commande « dpkg-reconfigure " +"-plow ceilometer »." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "Adresse IP de votre hôte RabbitMQ :" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" +"Afin de pouvoir interagir avec d'autres composants d'OpenStack, ce paquet " +"doit se connecter à un serveur centralisé RabbitMQ." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "Veuillez indiquer l'adresse IP de ce serveur." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "Nom d'utilisateur pour la connexion au serveur RabbitMQ :" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Veuillez indiquer le nom d'utilisateur à utiliser pour se connecter au " +"serveur RabbitMQ." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "Mot de passe pour la connexion au serveur RabbitMQ :" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" +"Veuillez indiquer le mot de passe à utiliser pour se connecter au serveur " +"RabbitMQ." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "Nom d'hôte du serveur d'authentification :" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" +"Veuillez indiquer le nom d'hôte du serveur d'authentification pour " +"Ceilometer. En général, il s'agit également du nom d'hôte du Service " +"d'Identité d'OpenStack (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "Nom du serveur d'authentification pour l'espace client :" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "Veuillez indiquer le serveur d'authentification pour l'espace client." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "Nom d'utilisateur du serveur d'authentification :" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "" +"Veuillez indiquer le nom d'utilisateur à utiliser pour le serveur " +"d'authentification." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "Mot de passe du serveur d'authentification :" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "" +"Veuillez indiquer le mot de passe à utiliser pour le serveur " +"d'authentification." diff --git a/xenial/debian/po/it.po b/xenial/debian/po/it.po new file mode 100644 index 0000000..cf07b28 --- /dev/null +++ b/xenial/debian/po/it.po @@ -0,0 +1,263 @@ +# Italian translation of ceilometer debconf messages. +# Copyright (C) 2013, ceilometer package copyright holder +# This file is distributed under the same license as the ceilometer package. +# Beatrice Torracca , 2013, 2014. +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2014-04-06 15:04+0200\n" +"Last-Translator: Beatrice Torracca \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Registrare Ceilometer nel catalogo dei punti terminali di Keystone?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Ogni servizio OpenStack (ogni API) dovrebbe essere registrato per poter " +"essere accessibile. Ciò viene fatto usando «keystone service-create» e " +"«keystone endpoint-create». Ciò può essere fatto ora automaticamente." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Notare che sarà necessario avere un server Keystone in funzione a cui " +"connettersi usando il token di autenticazione Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "Indirizzo IP del server Keystone:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Inserire l'indirizzo IP del server Keystone, in modo che ceilometer-api " +"possa contattare Keystone per effettuare la creazione del servizio e del " +"punto terminale Ceilometer." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Token di autenticazione Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Per configurare il proprio punto terminale in Keystone, ceilometer-api ha " +"bisogno del token di autenticazione Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "Indirizzo IP del punto terminale Ceilometer:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "Inserire l'indirizzo IP che verrà usato per contattare Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Questo indirizzo IP dovrebbe essere accessibile dai client che useranno il " +"servizio, perciò se si sta installando una cloud pubblica, questo dovrebbe " +"essere un indirizzo IP pubblico." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Nome della regione da registrare:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack gestisce le zone di disponibilità, con ogni regione che " +"rappresenta una posizione. Inserire la zona che si desidera usare durante la " +"registrazione del punto terminale." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "Indirizzo IP dell'host RabbitMQ:" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" +"Per poter funzionare insieme agli altri componenti di OpenStack, questo " +"pacchetto deve connettersi al server RabbitMQ centrale." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "Inserire l'indirizzo IP di tale server." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "Nome utente per la connessione al server RabbitMQ:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Specificare il nome utente da usare per connettersi al server RabbitMQ." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "Password per la connessione al server RabbitMQ:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "Specificare la password da usare per connettersi al server RabbitMQ." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "Nome host del server di autenticazione:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" +"Specificare il nome host del server di autenticazione per Ceilometer. " +"Tipicamente è anche il nome host dell'OpenStack Identity Service (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "Nome del locatario («tenant») per il server di autenticazione:" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "" +"Inserire il nome del locatario («tenant») per il server di autenticazione." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "Nome utente per il server di autenticazione:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "Inserire il nome utente da usare con il server di autenticazione." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "Password per il server di autenticazione:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "Inserire la password da usare con il server di autenticazione." diff --git a/xenial/debian/po/ja.po b/xenial/debian/po/ja.po new file mode 100644 index 0000000..37680f2 --- /dev/null +++ b/xenial/debian/po/ja.po @@ -0,0 +1,263 @@ +# SOME DESCRIPTIVE TITLE. +# some strings are also in the Keystone template, need integration. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the ceilometer package. +# victory , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2013-07-11 02:06+0900\n" +"Last-Translator: victory \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Ceilometer を Keystone の端末リストに登録しますか?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"OpenStack のサービスごと (API ごと) に、アクセスできるようにするため登録すべ" +"きです。「keystone service-create」と「keystone endpoint-create」を使って登録" +"することができます。ここで自動的に行うことができます。" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Keystone 認証文字列を使って接続する先の Keystone サーバが必要なことに注意して" +"ください。" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "Keystone サーバの IP アドレス:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Keystone サーバの IP アドレスを入力してください。それにより ceilometer-api " +"は Keystone と通信し、Ceilometer サービスや端末の作成ができるようになります。" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Keystone 認証文字列:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Keystone で端末を設定するには、ceilometer-api は Keystone 認証文字列を必要と" +"します。" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "Ceilometer 端末の IP アドレス:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "Ceilometer への通信に利用する IP アドレスを入力してください。" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"この IP アドレスはこのサービスを利用するクライアントからアクセスできないとい" +"けないので、パブリッククラウドをインストールしている場合、これは公開 IP アド" +"レスを使うようにしてください。" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "登録する領域の名前:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack は位置を示す各領域による利用可能区分の利用をサポートしています。端" +"末の登録時に利用したい区分を入力してください。" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the IP address of that server." +msgstr "Ceilometer への通信に利用する IP アドレスを入力してください。" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the authentication server tenant name." +msgstr "Ceilometer への通信に利用する IP アドレスを入力してください。" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the username to use with the authentication server." +msgstr "Ceilometer への通信に利用する IP アドレスを入力してください。" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the password to use with the authentication server." +msgstr "Ceilometer への通信に利用する IP アドレスを入力してください。" diff --git a/xenial/debian/po/nl.po b/xenial/debian/po/nl.po new file mode 100644 index 0000000..85981d7 --- /dev/null +++ b/xenial/debian/po/nl.po @@ -0,0 +1,274 @@ +# Dutch translation of ceilometer debconf templates. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the ceilometer package. +# Frans Spiesschaert , 2014, 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2015-08-29 22:05+0200\n" +"Last-Translator: Frans Spiesschaert \n" +"Language-Team: Debian Dutch l10n Team \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Gtranslator 2.91.6\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Ceilometer opnemen in de catalogus van Keystone-toegangspunten?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Elke dienst van OpenStack (elke API) moet geregistreerd staan om " +"toegankelijk te zijn. Dit gebeurt met de opdrachten \"keystone service-create" +"\" en \"keystone endpoint-create\". Dit kan nu automatisch uitgevoerd worden." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Merk op dat u een functionerende Keystone-server moet hebben, waarmee u " +"verbinding kunt maken met behulp van het legitimatiebewijs voor Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "IP-adres van de Keystone-server:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Gelieve het IP-adres van de Keystone-server op te geven, zodat ceilometer-" +"api Keystone kan contacteren om de Ceilometerdienst en het toegangspunt aan " +"te maken." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Legitimatiebewijs voor Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Om zijn toegangspunt in Keystone te kunnen aanmaken, heeft ceilometer-api " +"het legitimatiebewijs voor Keystone nodig." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "IP-adres van het toegangspunt van ceilometer:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Geef op welk IP-adres gebruikt zal worden om Ceilometer te contacteren." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Dit IP-adres moet bereikbaar zijn voor de clients die gebruik zullen maken " +"van deze dienst. Dus indien u een publieke cloud opzet, moet het een publiek " +"IP-adres zijn." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Naam van de registratieregio:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"Openstack ondersteunt het gebruik van zones van beschikbaarheid, waarbij " +"elke regio een locatie vertegenwoordigt. Geef aan welke zone u wenst te " +"gebruiken bij het registreren van het toegangspunt." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "Automatisch dbsync voor Ceilometer uitvoeren?" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" +"Na installatie kan Ceilometer automatisch de opdracht ceilometer-dbsync " +"uitvoeren. Om dit te doen werken heeft u wel een volledig functionele " +"mongodb-server nodig." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" +"U kunt deze instelling later wijzigen door de opdracht \"dpkg-reconfigure -" +"plow ceilometer\" uit te voeren." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "IP-adres van uw RabbitMQ-computer:" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" +"Om te kunnen samenwerken met andere componenten van OpenStack, moet dit " +"pakket verbinding maken met een centrale RabbitMQ-server." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "Geef het IP-adres op van die server." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "Gebruikersnaam voor de verbinding met de RabbitMQ-server:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" +"Geef de gebruikersnaam op die u nodig heeft om verbinding te maken met de " +"RabbitMQ-server." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "Wachtwoord voor de verbinding met de RabbitMQ-server:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" +"Gelieve het wachtwoord te geven dat u nodig heeft om verbinding te maken met " +"de RabbitMQ-server." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "Computernaam van de authenticatieserver:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" +"Geef de computernaam van de authenticatieserver voor Ceilometer. Meestal is " +"dit ook de computernaam van de OpenStack identiteitsdienst (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "Naam van de clientruimte (tenant) op de authenticatieserver:" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "" +"Gelieve de naam te vermelden van de clientruimte (tenant) op de " +"authenticatieserver" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "Gebruikersnaam voor de authenticatieserver:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "Geef de gebruikersnaam op voor de authenticatieserver." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "Wachtwoord voor de authenticatieserver:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "Geef het wachtwoord op voor de authenticatieserver." diff --git a/xenial/debian/po/pt.po b/xenial/debian/po/pt.po new file mode 100644 index 0000000..fbfc244 --- /dev/null +++ b/xenial/debian/po/pt.po @@ -0,0 +1,274 @@ +# Portuguese translation for ceilometer's debconf messages +# Copyright (C) 2013 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the ceilometer package. +# Miguel Figueiredo \n" +"Language-Team: Portuguese \n" +"Language: Portuguese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Registar o Ceilometer no catálogo de endpoints do Keystone?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Cada serviço OpenStack (cada API) deve ser registado de modo a ficar " +"acessível. Isto é feito utilizando \"keystone service-create\" e \"keystone " +"endpoint-create\". Isto pode ser feito agora, automaticamente." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Note que necessitará ter a correr um servidor Keystone ao qual ligar " +"utilizando o token de autenticação do Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "Endereço IP do servidor Keystone:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Por favor introduza o endereço IP do servidor Keystone, para que o " +"ceilometer-api contacte o Keystone para adicionar o serviço Ceilomenter e " +"crie o endpoint." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Token de autenticação do Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Para configurar o seu endpoint no Keystone, o ceilometer-api necessita do " +"token de autenticação do Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "Endereço IP do endpoint do Ceilometer:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Por favor introduza o endereço IP que será utilizado para contactar o " +"Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Este endereço IP deverá ser acessível a partir dos clientes que irão " +"utilizar este serviço, por isso se estiver a instalar uma cloud pública, " +"este deve ser um endereço IP público." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Nome da região a registar:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"O OpenStack suporta a utilização de zonas de disponibilidade, com cada " +"região a representar um local. Por favor introduza a zona que deseja " +"utilizar ao registar o endpoint." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the IP address of that server." +msgstr "" +"Por favor introduza o endereço IP que será utilizado para contactar o " +"Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the authentication server tenant name." +msgstr "" +"Por favor introduza o endereço IP que será utilizado para contactar o " +"Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the username to use with the authentication server." +msgstr "" +"Por favor introduza o endereço IP que será utilizado para contactar o " +"Ceilometer." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the password to use with the authentication server." +msgstr "" +"Por favor introduza o endereço IP que será utilizado para contactar o " +"Ceilometer." diff --git a/xenial/debian/po/ru.po b/xenial/debian/po/ru.po new file mode 100644 index 0000000..64524a4 --- /dev/null +++ b/xenial/debian/po/ru.po @@ -0,0 +1,263 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the ceilometer package. +# +# Yuri Kozlov , 2013, 2014. +msgid "" +msgstr "" +"Project-Id-Version: ceilometer 2013.2.1-3\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2014-01-26 09:22+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 1.4\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Зарегистрировать Ceilometer в каталоге конечных точек Keystone?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Для доступа к службам OpenStack (каждому API) их нужно регистрировать. Это " +"выполняется с помощью команды «keystone service-create» и «keystone endpoint-" +"create». Это может быть сделано автоматически прямо сейчас." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Заметим, что у вас должен быть работающий сервер Keystone, к которому будет " +"произведено подключение с помощью токена аутентификации Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "IP-адрес сервера Keystone:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Введите IP-адрес сервера Keystone для того, чтобы ceilometer-api могла " +"подключиться к Keystone для запуска службы Ceilometer и создания конечной " +"точки." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Токен аутентификации Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"Для настройки собственной конечной точки в Keystone ceilometer-api требуется " +"токен аутентификации Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "IP-адрес конечной точки Ceilometer:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" +"Введите IP-адрес, который будет использован для подключения к Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Этот IP-адрес должен быть доступен клиентам, которые будут использовать эту " +"службу, поэтому если вы разворачиваете открытое облако, то это должен быть " +"публичный IP-адрес." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Название области для регистрации:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack поддерживает разделение на зоны доступности, где каждая область " +"представляет определённое расположение. Введите зону, которую вы хотите " +"использовать при регистрации конечной точки." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "IP-адрес узла RabbitMQ:" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" +"Для взаимодействия с другими компонентами OpenStack, этому пакету необходимо " +"подключаться к центральному серверу RabbitMQ." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "Укажите IP-адрес этого сервера." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "Имя пользователя для подключения к серверу RabbitMQ:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "Введите имя пользователя для подключения к серверу RabbitMQ." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "Пароль для подключения к серверу RabbitMQ:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "Введите пароль для подключения к серверу RabbitMQ." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "Имя узла сервера аутентификации:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" +"Введите имя узла сервера аутентификации для Ceilometer. Данное имя обычно " +"совпадает с узлом OpenStack Identity Service (Keystone)." + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "Членское имя сервера аутентификации:" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "Укажите членское имя сервера аутентификации." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "Имя пользователя для сервера аутентификации:" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "Введите имя пользователя для работы с сервером аутентификации." + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "Пароль для сервера аутентификации:" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "Введите пароль для работы с сервером аутентификации." diff --git a/xenial/debian/po/sv.po b/xenial/debian/po/sv.po new file mode 100644 index 0000000..165e2df --- /dev/null +++ b/xenial/debian/po/sv.po @@ -0,0 +1,257 @@ +# Translation of ceilometer debconf template to Swedish +# Copyright (C) 2013 Martin Bagge +# This file is distributed under the same license as the ceilometer package. +# +# Martin Bagge , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: 2013-12-30 10:28+0100\n" +"Last-Translator: Martin Bagge / brother \n" +"Language-Team: Swedish \n" +"Language: Swedish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "Ska Ceilometer registreras i Keystones katalog för ändpunkter?" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" +"Alla OpenStack-tjänster (varje API) måste registreras för att kunna " +"användas. Detta görs med kommandona \"keystone service-create\" och " +"\"keystone endpoint-create\". Detta kan göras automatiskt nu." + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" +"Observera att du behöver ha en fungerande Keystone-server som kan anslutas " +"till." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "IP-adress till Keystone-server:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" +"Ange IP-adress till Keystone-servern så att ceilometer-api kan kontakta " +"Keystone för att skapa Ceilometer-tjänsten och ändpunkten." + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "Autetiseringsvärde för Keystone:" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" +"För att lägga till ändpunkt i Keystone behöver ceilometer-api ett " +"autentiseringsvärde för Keystone." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "IP-adress för Ceilometers ändpunkt:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "Ange den IP-adress som ska användas för att kontakta Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" +"Denna IP-adress ska vara nåbar från klienterna som vill använda den här " +"tjänsten. Om detta är en publik molntjänst så ska det vara en publik IP-" +"adress." + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "Regionnamn:" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" +"OpenStack använder tillgänglighetszoner. Varje region representerar en " +"plats. Ange zonen som ska användas när ändpunkten registreras." + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +#, fuzzy +#| msgid "Please enter the IP address that will be used to contact Ceilometer." +msgid "Please specify the IP address of that server." +msgstr "Ange den IP-adress som ska användas för att kontakta Ceilometer." + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "" diff --git a/xenial/debian/po/templates.pot b/xenial/debian/po/templates.pot new file mode 100644 index 0000000..63ebc4f --- /dev/null +++ b/xenial/debian/po/templates.pot @@ -0,0 +1,241 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ceilometer\n" +"Report-Msgid-Bugs-To: ceilometer@packages.debian.org\n" +"POT-Creation-Date: 2015-06-26 13:18+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "Register Ceilometer in the Keystone endpoint catalog?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Each OpenStack service (each API) should be registered in order to be " +"accessible. This is done using \"keystone service-create\" and \"keystone " +"endpoint-create\". This can be done automatically now." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-api.templates:2001 +msgid "" +"Note that you will need to have an up and running Keystone server on which " +"to connect using the Keystone authentication token." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "Keystone server IP address:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:3001 +msgid "" +"Please enter the IP address of the Keystone server, so that ceilometer-api " +"can contact Keystone to do the Ceilometer service and endpoint creation." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "Keystone authentication token:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-api.templates:4001 +msgid "" +"To configure its endpoint in Keystone, ceilometer-api needs the Keystone " +"authentication token." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Ceilometer endpoint IP address:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "Please enter the IP address that will be used to contact Ceilometer." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:5001 +msgid "" +"This IP address should be accessible from the clients that will use this " +"service, so if you are installing a public cloud, this should be a public IP " +"address." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "Name of the region to register:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-api.templates:6001 +msgid "" +"OpenStack supports using availability zones, with each region representing a " +"location. Please enter the zone that you wish to use when registering the " +"endpoint." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "Perform automatic dbsync for Ceilometer?" +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"Ceilometer can automatically run ceilometer-dbsync after installation. For " +"it to work, you need an up and running mongodb-server." +msgstr "" + +#. Type: boolean +#. Description +#: ../ceilometer-common.templates:2001 +msgid "" +"You can change this setting later on by running \"dpkg-reconfigure -plow " +"ceilometer\"." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "IP address of your RabbitMQ host:" +msgstr "" + +#. Type: string +#. Description +#. Type: string +#. Description +#. Type: password +#. Description +#: ../ceilometer-common.templates:3001 ../ceilometer-common.templates:4001 +#: ../ceilometer-common.templates:5001 +msgid "" +"In order to interoperate with other components of OpenStack, this package " +"needs to connect to a central RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:3001 +msgid "Please specify the IP address of that server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Username for connection to the RabbitMQ server:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:4001 +msgid "Please specify the username used to connect to the RabbitMQ server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Password for connection to the RabbitMQ server:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:5001 +msgid "Please specify the password used to connect to the RabbitMQ server." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "Authentication server hostname:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:6001 +msgid "" +"Please specify the hostname of the authentication server for Ceilometer. " +"Typically this is also the hostname of the OpenStack Identity Service " +"(Keystone)." +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Authentication server tenant name:" +msgstr "" + +#. Type: string +#. Description +#. Translators: a "tenant" in OpenStack world is +#. an entity that contains one or more username/password couples. +#. It's typically the tenant that will be used for billing. Having more than one +#. username/password is very helpful in larger organization. +#. You're advised to either keep "tenant" without translating it +#. or keep it parenthezised. Example for French: +#. locataire ("tenant") +#: ../ceilometer-common.templates:7001 +msgid "Please specify the authentication server tenant name." +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Authentication server username:" +msgstr "" + +#. Type: string +#. Description +#: ../ceilometer-common.templates:8001 +msgid "Please specify the username to use with the authentication server." +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Authentication server password:" +msgstr "" + +#. Type: password +#. Description +#: ../ceilometer-common.templates:9001 +msgid "Please specify the password to use with the authentication server." +msgstr "" diff --git a/xenial/debian/pydist-overrides b/xenial/debian/pydist-overrides new file mode 100644 index 0000000..39644bf --- /dev/null +++ b/xenial/debian/pydist-overrides @@ -0,0 +1,2 @@ +argparse +ordereddict diff --git a/xenial/debian/python-ceilometer.install b/xenial/debian/python-ceilometer.install new file mode 100644 index 0000000..2b24d28 --- /dev/null +++ b/xenial/debian/python-ceilometer.install @@ -0,0 +1,2 @@ +ceilometer/api/app.wsgi /usr/share/ceilometer +usr/lib/python*/dist-packages/* diff --git a/xenial/debian/python-ceilometer.links b/xenial/debian/python-ceilometer.links new file mode 100644 index 0000000..fc59ae9 --- /dev/null +++ b/xenial/debian/python-ceilometer.links @@ -0,0 +1,3 @@ +/usr/share/javascript/jquery/jquery.min.js /usr/share/pyshared/ceilometer/api/v1/static/jquery-1.8.3.js +/usr/share/javascript/jquery/jquery.min.js /usr/lib/python2.6/dist-packages/ceilometer/api/v1/static/jquery-1.8.3.js +/usr/share/javascript/jquery/jquery.min.js /usr/lib/python2.7/dist-packages/ceilometer/api/v1/static/jquery-1.8.3.js diff --git a/xenial/debian/rules b/xenial/debian/rules new file mode 100755 index 0000000..3cf682c --- /dev/null +++ b/xenial/debian/rules @@ -0,0 +1,71 @@ +#!/usr/bin/make -f + +export HOME="$(CURDIR)/debian/test" +include /usr/share/openstack-pkg-tools/pkgos.make +export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog | grep Version: | cut -d' ' -f2 | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/' | head -n 1) + +%: + dh $@ --with python2,systemd,sphinxdoc + +override_dh_clean: + dh_clean + rm -rf .testrepository + rm -f debian/ceilometer-common.config debian/ceilometer-common.postinst debian/ceilometer-api.config debian/ceilometer-api.postinst + +override_dh_install: + rm -rf $(CURDIR)/debian/tmp + python2.7 setup.py install --install-layout=deb --root $(CURDIR)/debian/tmp + dh_install --fail-missing + + # Manage ceilometer.conf + mkdir -p $(CURDIR)/debian/ceilometer-common/etc/ceilometer + mkdir -p $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common + PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python2.7/dist-packages oslo-config-generator \ + --output-file $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf \ + --wrap-width 140 \ + --namespace ceilometer \ + --namespace oslo.concurrency \ + --namespace oslo.db \ + --namespace oslo.log \ + --namespace oslo.messaging \ + --namespace oslo.middleware.cors \ + --namespace oslo.policy \ + --namespace oslo.service.service \ + --namespace keystonemiddleware.auth_token + #sed -i 's|[# \t]*auth_protocol[\t ]*=.*|auth_protocol=http|' $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + chmod 0644 $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + #sed -i 's|#connection[ \t]*=.*|connection=mongodb://localhost:27017/ceilometer|' $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf + cp -a $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf $(CURDIR)/debian/ceilometer-common/etc/ceilometer/ + +override_dh_auto_build: + dh_auto_build + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.config + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.postinst + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.config + /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.postinst + +override_dh_auto_clean: + dh_auto_clean + rm -rf .testrepository + find . -iname '*.pyc' -delete + rm -f debian/*.init debian/*.service debian/*.upstart + +override_dh_auto_test: +ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) + rm -rf .testrepository + testr init + set -e ; \ + TEMP_REZ=`mktemp -t` ; \ + bash -x ./setup-test-env-mongodb.sh testr run --subunit 'tests\.(?!(.*test_bin.*|.*functional.*|.*gabbi\.test_gabbi_prefix.*))' | tee $$TEMP_REZ | subunit2pyunit ; \ + cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \ + rm -f $$TEMP_REZ ; + testr slowest +endif + +override_dh_sphinxdoc: +ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS))) + PYTHONPATH=. sphinx-build -b html doc/source $(CURDIR)/debian/ceilometer-doc/usr/share/doc/ceilometer-doc/html + mkdir -p $(CURDIR)/debian/ceilometer-doc/usr/share/doc/ceilometer-doc/html/_static + touch $(CURDIR)/debian/ceilometer-doc/usr/share/doc/ceilometer-doc/html/_static/toggle.js + dh_sphinxdoc -O--buildsystem=python_distutils +endif diff --git a/xenial/debian/source/format b/xenial/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/xenial/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/xenial/debian/watch b/xenial/debian/watch new file mode 100644 index 0000000..5700c86 --- /dev/null +++ b/xenial/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts="uversionmangle=s/\.(b|rc)/~$1/" \ +https://github.com/openstack/ceilometer/tags .*/(\d[\d\.]+)\.tar\.gz -- 2.32.3