malware samples update

This commit is contained in:
Z. Cliffe Schreuders
2020-10-28 12:09:24 +00:00
parent 9064e847a1
commit e278c3097f

View File

@@ -1,17 +1,18 @@
class live_malware_samples::install{
# Pip install triggers a 404, so just use git to grab the files
# Pip install currently triggers a 404, so just use git to grab the files
# without the python frontend
# ensure_packages(['python-pip'], { ensure => 'present' })
# exec { 'git clone https://github.com/cliffe/theZoo.git':
# cwd => '/opt/',
# creates => '/opt/theZoo',
# path => ['/usr/bin', '/usr/sbin',],
# } ->
exec { 'pip install --user -r requirements.txt':
cwd => '/opt/theZoo',
# ensure_packages(['python-pip'], { ensure => 'present' })
exec { 'git clone https://github.com/cliffe/theZoo.git':
cwd => '/opt/',
creates => '/opt/theZoo',
path => ['/usr/bin', '/usr/sbin',],
}
# ->
# exec { 'pip install --user -r requirements.txt':
# cwd => '/opt/theZoo',
# path => ['/usr/bin', '/usr/sbin',],
# }
}