diff --git a/host-plumbum.yml b/host-plumbum.yml index d9aa737..e0c3433 100644 --- a/host-plumbum.yml +++ b/host-plumbum.yml @@ -3,7 +3,7 @@ become: true roles: - - role: nfs-host + - role: nfs_host vars: nfs_host_exports: - directory: "/srv/nfs/backup" diff --git a/roles/nfs-host/defaults/main.yml b/roles/nfs_host/defaults/main.yml similarity index 87% rename from roles/nfs-host/defaults/main.yml rename to roles/nfs_host/defaults/main.yml index 210a3be..ee0d286 100644 --- a/roles/nfs-host/defaults/main.yml +++ b/roles/nfs_host/defaults/main.yml @@ -1,4 +1,4 @@ -# Defaults for nfs-host +# Defaults for nfs_host --- nfs_host_exports: [] # - directory: "/srv/nfs" diff --git a/roles/nfs-host/handlers/main.yml b/roles/nfs_host/handlers/main.yml similarity index 100% rename from roles/nfs-host/handlers/main.yml rename to roles/nfs_host/handlers/main.yml diff --git a/roles/nfs-host/tasks/main.yml b/roles/nfs_host/tasks/main.yml similarity index 100% rename from roles/nfs-host/tasks/main.yml rename to roles/nfs_host/tasks/main.yml diff --git a/roles/nfs-host/templates/exports.j2 b/roles/nfs_host/templates/exports.j2 similarity index 100% rename from roles/nfs-host/templates/exports.j2 rename to roles/nfs_host/templates/exports.j2