commit cloud-init for openSUSE:Factory

Hello community, here is the log from the commit of package cloud-init for openSUSE:Factory checked in at 2017-03-02 19:30:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cloud-init (Old) and /work/SRC/openSUSE:Factory/.cloud-init.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "cloud-init" Thu Mar 2 19:30:12 2017 rev:34 rq:460303 version:0.7.8 Changes: -------- --- /work/SRC/openSUSE:Factory/cloud-init/cloud-init.changes 2017-01-24 10:42:59.300724701 +0100 +++ /work/SRC/openSUSE:Factory/.cloud-init.new/cloud-init.changes 2017-03-02 19:30:12.596140037 +0100 @@ -1,0 +2,18 @@ +Mon Feb 20 10:00:42 CET 2017 - kukuk@suse.de + +- Don't call insserv if we use systemd + +------------------------------------------------------------------- +Thu Feb 16 20:56:03 UTC 2017 - rjschwei@suse.com + +- Do not set mount options for ephemeral drive, use the defaults + that are built into the code (bsc#930524) + +------------------------------------------------------------------- +Thu Feb 16 19:39:16 UTC 2017 - rjschwei@suse.com + +- Update fix-default-systemd-unit-dir.patch (bsc#1024709) + + based on work by Thomas Abraham +- Add cloud-init-handle-not-implemented-query.patch (boo#1017832) + +------------------------------------------------------------------- New: ---- cloud-init-handle-not-implemented-query.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cloud-init.spec ++++++ --- /var/tmp/diff_new_pack.S9JYjl/_old 2017-03-02 19:30:14.435879666 +0100 +++ /var/tmp/diff_new_pack.S9JYjl/_new 2017-03-02 19:30:14.435879666 +0100 @@ -54,6 +54,7 @@ Patch27: cloud-init-sysconfig-netpathfix.patch Patch28: zypp_add_repos.diff Patch29: datasourceLocalDisk.patch +Patch30: cloud-init-handle-not-implemented-query.patch BuildRequires: fdupes BuildRequires: filesystem BuildRequires: python-devel @@ -196,6 +197,7 @@ %patch27 %patch28 -p0 %patch29 -p0 +%patch30 %if 0%{?suse_version} && 0%{?suse_version} <= 1210 %patch40 -p1 %endif @@ -280,8 +282,10 @@ %fdupes %{buildroot}%{python_sitelib} %endif +%if 0%{?suse_version} && 0%{?suse_version} <= 1210 %postun %insserv_cleanup +%endif %files %defattr(-,root,root) ++++++ cloud-init-handle-not-implemented-query.patch ++++++ --- cloudinit/cmd/main.py.orig +++ cloudinit/cmd/main.py @@ -681,6 +681,10 @@ def main(sysv_args=None): rname, rdesc = ("dhclient-hook", "running dhclient-hook module") + elif name == 'query': + print 'Action query is not yet implemented' + sys.exit(1) + args.reporter = events.ReportEventStack( rname, rdesc, reporting_enabled=report_on) ++++++ cloud.cfg.suse ++++++ --- /var/tmp/diff_new_pack.S9JYjl/_old 2017-03-02 19:30:14.543864384 +0100 +++ /var/tmp/diff_new_pack.S9JYjl/_new 2017-03-02 19:30:14.543864384 +0100 @@ -6,7 +6,6 @@ disable_root: false preserve_hostname: false syslog_fix_perms: root:root -mount_default_fields: [~, ~, 'auto', 'defaults', '0', '2'] # The modules that run in the 'init' stage cloud_init_modules: ++++++ fix-default-systemd-unit-dir.patch ++++++ --- /var/tmp/diff_new_pack.S9JYjl/_old 2017-03-02 19:30:14.563861554 +0100 +++ /var/tmp/diff_new_pack.S9JYjl/_new 2017-03-02 19:30:14.563861554 +0100 @@ -11,3 +11,14 @@ } } cmd = ['pkg-config', '--variable=%s' % var, library] +--- systemd/cloud-init-generator.orig ++++ systemd/cloud-init-generator +@@ -7,7 +7,7 @@ LOG_D="/run/cloud-init" + ENABLE="enabled" + DISABLE="disabled" + RUN_ENABLED_FILE="$LOG_D/$ENABLE" +-CLOUD_SYSTEM_TARGET="/lib/systemd/system/cloud-init.target" ++CLOUD_SYSTEM_TARGET="/usr/lib/systemd/system/cloud-init.target" + CLOUD_TARGET_NAME="cloud-init.target" + # lxc sets 'container', but lets make that explicitly a global + CONTAINER="${container}"
participants (1)
-
root@hilbertn.suse.de