~ubuntu-branches/ubuntu/quantal/cloud-init/quantal

« back to all changes in this revision

Viewing changes to packages/redhat/cloud-init.spec.in

  • Committer: Package Import Robot
  • Author(s): Scott Moser
  • Date: 2012-09-30 14:29:04 UTC
  • Revision ID: package-import@ubuntu.com-20120930142904-nq8fkve62i0xytqz
* add CloudStack to DataSources listed by dpkg-reconfigure (LP: #1002155)
* New upstream snapshot.
  * 0440 permissions on /etc/sudoers.d files rather than 0644
  * get host ssh keys to the console (LP: #1055688)
  * MAAS DataSource adjust timestamp in oauth header to one based on the
    timestamp in the response of a 403.  This accounts for a bad local
    clock. (LP: #978127)
  * re-start the salt daemon rather than start to ensure config changes
    are taken.
  * allow for python unicode types in yaml that is loaded.
  * cleanup in how config modules get at users and groups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# Or: http://fedoraproject.org/wiki/Packaging:ScriptletSnippets
6
6
# Or: http://www.rpm.org/max-rpm/ch-rpm-inside.html
7
7
 
 
8
#for $d in $defines
 
9
%define ${d}
 
10
#end for
 
11
 
8
12
Name:           cloud-init
9
13
Version:        ${version}
10
14
Release:        ${release}%{?dist}
36
40
Requires:       ${r}
37
41
#end for
38
42
 
 
43
# Custom patches
 
44
#set $size = 0
 
45
#for $p in $patches
 
46
Patch${size}: $p
 
47
#set $size += 1
 
48
#end for
 
49
 
39
50
#if $sysvinit
40
51
Requires(post):       chkconfig
41
52
Requires(postun):     initscripts
58
69
%prep
59
70
%setup -q -n %{name}-%{version}~${release}
60
71
 
 
72
# Custom patches activation
 
73
#set $size = 0
 
74
#for $p in $patches
 
75
%patch${size} -p1
 
76
#set $size += 1
 
77
#end for
 
78
 
61
79
%build
62
80
%{__python} setup.py build
63
81