Skip to content

Commit 0010489

Browse files
committed
Merge pull request #33 from bstopp/bug/unpack-order
Bug/unpack order
2 parents ca48f29 + 34310f0 commit 0010489

File tree

6 files changed

+9
-16
lines changed

6 files changed

+9
-16
lines changed

.gitignore

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
1+
*.iml
2+
.project
3+
.buildpath
4+
.vagrant/
5+
.bundle/
6+
.idea/
27
pkg/
38
vendor/
49
spec/fixtures/
5-
.vagrant/
6-
.bundle/
710
coverage/
8-
.idea/
9-
*.iml
10-
.project
11-
.buildpath
1211
log/
1312
junit/

files/.gitignore

Whitespace-only changes.

manifests/config.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# == Class: aem::config
22
#
3-
# Configure the AEM instance with the appropriate parameter values, ensuring
3+
# Configure the AEM instance with the appropriate parameter values
44
#
55
# Do not use this class directly.
66
#
@@ -41,8 +41,8 @@
4141
# Create the start script
4242
file { "${home}/crx-quickstart/bin/start":
4343
ensure => file,
44+
content => template("${module_name}/start.erb"),
4445
mode => '0755',
45-
source => "puppet:///modules/${module_name}/start",
4646
require => File["${home}/crx-quickstart/bin/start.orig"],
4747
}
4848

spec/acceptance/acceptance_spec.rb

-6
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@
2828
mode => \"0755\",
2929
}
3030
31-
file { \"/opt/faux/crx-quickstart/bin/start\" :
32-
ensure => \"file\",
33-
source => "puppet:///modules/aem/start",
34-
mode => \"0755\",
35-
}
36-
3731
file { \"/opt/faux/crx-quickstart/bin/start.orig\" :
3832
ensure => \"file\",
3933
content => \"\",

spec/defines/aem_instance_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@
148148
'/opt/aem/crx-quickstart/bin/start'
149149
).with(
150150
'ensure' => 'file',
151+
'content' => /.*/,
151152
'group' => 'aem',
152-
'source' => 'puppet:///modules/aem/start',
153153
'owner' => 'aem'
154154
).that_requires(
155155
'File[/opt/aem/crx-quickstart/bin/start.orig]'
File renamed without changes.

0 commit comments

Comments
 (0)