diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/macchanger.pp | 5 | ||||
-rw-r--r-- | manifests/subsystem/macchanger/wicd.pp | 9 | ||||
-rw-r--r-- | manifests/utils/laptop/debian.pp | 2 |
3 files changed, 15 insertions, 1 deletions
diff --git a/manifests/subsystem/macchanger.pp b/manifests/subsystem/macchanger.pp new file mode 100644 index 0000000..f5e5438 --- /dev/null +++ b/manifests/subsystem/macchanger.pp @@ -0,0 +1,5 @@ +class nodo::subsystem::macchanger { + package { 'macchanger': + ensure => present, + } +} diff --git a/manifests/subsystem/macchanger/wicd.pp b/manifests/subsystem/macchanger/wicd.pp new file mode 100644 index 0000000..18ee263 --- /dev/null +++ b/manifests/subsystem/macchanger/wicd.pp @@ -0,0 +1,9 @@ +class nodo::subsystem::macchanger::wicd inherits nodo::subsystem::macchanger { + file { '/etc/wicd/scripts/preconnect/macchanger': + ensure => present, + owner => root, + group => root, + mode => 0755, + source => 'puppet:///modules/nodo/etc/wicd/macchanger', + } +} diff --git a/manifests/utils/laptop/debian.pp b/manifests/utils/laptop/debian.pp index e42b999..5f5c0c7 100644 --- a/manifests/utils/laptop/debian.pp +++ b/manifests/utils/laptop/debian.pp @@ -8,7 +8,7 @@ class nodo::utils::laptop::debian { 'iw', 'wvdial', 'wavemon', 'btscanner', 'laptop-mode-tools', 'acpi-support', 'tftp', 'sharutils', 'wireshark', - 'macchanger', 'weplab', 'wpagui', + 'weplab', 'wpagui', 'gnokii', 'sslstrip', 'uswsusp', 'tcpdump', 'tshark' ]: ensure => installed, |