Class: Ansible::Ruby::Modules::Crypttab
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Crypttab
- Defined in:
- lib/ansible/ruby/modules/generated/extras/system/crypttab.rb
Instance Method Summary collapse
-
#backing_device ⇒ Object?
Path to the underlying block device or file, or the UUID of a block-device prefixed with I(UUID=).
-
#name ⇒ String
Name of the encrypted block device as it appears in the C(/etc/crypttab) file, or optionaly prefixed with C(/dev/mapper/), as it appears in the filesystem.
-
#opts ⇒ Array<String>, ...
A comma-delimited list of options.
-
#password ⇒ String?
Encryption password, the path to a file containing the pasword, or ‘none’ or ‘-’ if the password should be entered at boot.
-
#path ⇒ String?
Path to file to use instead of C(/etc/crypttab).
-
#state ⇒ :present, ...
Use I(present) to add a line to C(/etc/crypttab) or update it’s definition if already present.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#backing_device ⇒ Object?
Returns Path to the underlying block device or file, or the UUID of a block-device prefixed with I(UUID=).
18 |
# File 'lib/ansible/ruby/modules/generated/extras/system/crypttab.rb', line 18 attribute :backing_device |
#name ⇒ String
Returns Name of the encrypted block device as it appears in the C(/etc/crypttab) file, or optionaly prefixed with C(/dev/mapper/), as it appears in the filesystem. I(/dev/mapper/) will be stripped from I(name).
10 |
# File 'lib/ansible/ruby/modules/generated/extras/system/crypttab.rb', line 10 attribute :name |
#opts ⇒ Array<String>, ...
Returns A comma-delimited list of options. See C(crypttab(5) ) for details.
25 |
# File 'lib/ansible/ruby/modules/generated/extras/system/crypttab.rb', line 25 attribute :opts |
#password ⇒ String?
Returns Encryption password, the path to a file containing the pasword, or ‘none’ or ‘-’ if the password should be entered at boot.
21 |
# File 'lib/ansible/ruby/modules/generated/extras/system/crypttab.rb', line 21 attribute :password |
#path ⇒ String?
Returns Path to file to use instead of C(/etc/crypttab). This might be useful in a chroot environment.
29 |
# File 'lib/ansible/ruby/modules/generated/extras/system/crypttab.rb', line 29 attribute :path |
#state ⇒ :present, ...
Returns Use I(present) to add a line to C(/etc/crypttab) or update it’s definition if already present. Use I(absent) to remove a line with matching I(name). Use I(opts_present) to add options to those already present; options with different values will be updated. Use I(opts_absent) to remove options from the existing set.
14 |
# File 'lib/ansible/ruby/modules/generated/extras/system/crypttab.rb', line 14 attribute :state |