Skip to content

Commit 2cb5a66

Browse files
author
Benjamin Merot
committed
Edit examples to fit manifest code styleguide
1 parent f758591 commit 2cb5a66

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.markdown

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
You can manage in a single definition a mount definition for your NFS storage and the directories to backup there.
1212
```shell
1313
class { 'remote_backup':
14-
mount_path => "/mnt/backup,"
15-
nfs_server_ip => "10.0.0.1",
16-
nfs_server_path => "my_nfs_storage",
14+
mount_path => '/mnt/backup',
15+
nfs_server_ip => '10.0.0.1',
16+
nfs_server_path => 'my_nfs_storage',
1717
backup_rule => {
18-
directories_to_backup => ["/var/log", "/var/www"],
18+
directories_to_backup => ['/var/log', '/var/www'],
1919
},
2020
}
2121
```
2222

2323
Simple hourly incremental backup from one or more folder/partition to another
2424
```shell
2525
class { 'remote_backup::rule':
26-
directories_to_backup => ["/var/log", "/var/www"],
27-
destination => "/data",
26+
directories_to_backup => ['/var/log', '/var/www'],
27+
destination => '/data',
2828
}
2929
```
3030

0 commit comments

Comments
 (0)