summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Grimberg <agrimberg@linuxfoundation.org>2015-04-06 12:23:22 -0700
committerAndrew Grimberg <agrimberg@linuxfoundation.org>2015-04-06 12:23:22 -0700
commita618f2be009b44df5fe91a1d6863bb55bc50020f (patch)
tree3f5e3e8ce3fca8add12295fa3e216982e5744a74
parent3d4547646d49295c91bb002fa885e187c2d89feb (diff)
Clean up puppet lint warnings
There were puppet lint warnings due to indentation in several examples. This commit cleans up the warnings. Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
-rw-r--r--examples/p4/create_client.pp4
-rw-r--r--examples/p4/delete_client.pp4
-rw-r--r--examples/p4/latest_client.pp6
-rw-r--r--examples/p4/sync_client.pp8
4 files changed, 11 insertions, 11 deletions
diff --git a/examples/p4/create_client.pp b/examples/p4/create_client.pp
index 0f8233a..3cf9160 100644
--- a/examples/p4/create_client.pp
+++ b/examples/p4/create_client.pp
@@ -1,4 +1,4 @@
vcsrepo { '/tmp/vcstest/p4_client_root':
- ensure => present,
- provider => 'p4',
+ ensure => present,
+ provider => 'p4',
}
diff --git a/examples/p4/delete_client.pp b/examples/p4/delete_client.pp
index 1e305f1..82c9c95 100644
--- a/examples/p4/delete_client.pp
+++ b/examples/p4/delete_client.pp
@@ -1,4 +1,4 @@
vcsrepo { '/tmp/vcstest/p4_client_root':
- ensure => absent,
- provider => 'p4',
+ ensure => absent,
+ provider => 'p4',
}
diff --git a/examples/p4/latest_client.pp b/examples/p4/latest_client.pp
index a7caeb6..106ef9e 100644
--- a/examples/p4/latest_client.pp
+++ b/examples/p4/latest_client.pp
@@ -1,5 +1,5 @@
vcsrepo { '/tmp/vcstest/p4_client_root':
- ensure => latest,
- provider => 'p4',
- source => '//depot/...',
+ ensure => latest,
+ provider => 'p4',
+ source => '//depot/...',
}
diff --git a/examples/p4/sync_client.pp b/examples/p4/sync_client.pp
index fc0e29c..33e4731 100644
--- a/examples/p4/sync_client.pp
+++ b/examples/p4/sync_client.pp
@@ -1,6 +1,6 @@
vcsrepo { '/tmp/vcstest/p4_client_root':
- ensure => present,
- provider => 'p4',
- source => '//depot/...',
- revision => '30',
+ ensure => present,
+ provider => 'p4',
+ source => '//depot/...',
+ revision => '30',
}