Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions manifests/instance_service.pp
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@
Stdlib::Absolutepath $bindir = '/opt/haproxy/bin',
) {
ensure_resource('package', $haproxy_package, {
'ensure' => 'present',
'ensure' => 'present',

Check warning on line 50 in manifests/instance_service.pp

View workflow job for this annotation

GitHub Actions / Spec / Spec tests (Puppet: ~> 8.0, Ruby Ver: 3.2)

indent should be 6 chars and is 4 (check: strict_indent)
})

# Manage the parent directory.
ensure_resource('file', $bindir, {
ensure => directory,
owner => 'root',
group => 'root',
mode => '0744',
ensure => directory,

Check warning on line 55 in manifests/instance_service.pp

View workflow job for this annotation

GitHub Actions / Spec / Spec tests (Puppet: ~> 8.0, Ruby Ver: 3.2)

indent should be 6 chars and is 4 (check: strict_indent)
owner => 'root',

Check warning on line 56 in manifests/instance_service.pp

View workflow job for this annotation

GitHub Actions / Spec / Spec tests (Puppet: ~> 8.0, Ruby Ver: 3.2)

indent should be 6 chars and is 4 (check: strict_indent)
group => 'root',

Check warning on line 57 in manifests/instance_service.pp

View workflow job for this annotation

GitHub Actions / Spec / Spec tests (Puppet: ~> 8.0, Ruby Ver: 3.2)

indent should be 6 chars and is 4 (check: strict_indent)
mode => '0744',

Check warning on line 58 in manifests/instance_service.pp

View workflow job for this annotation

GitHub Actions / Spec / Spec tests (Puppet: ~> 8.0, Ruby Ver: 3.2)

indent should be 6 chars and is 4 (check: strict_indent)
})

# Create a link named after the instance. This just makes it easier
Expand Down
Loading