3c40aba395
git-svn-id: file:///home/svn/framework3/trunk@13744 4d416f70-5f16-0410-b530-b9f4589650da
17 lines
273 B
Ruby
17 lines
273 B
Ruby
# This assumes you're on a recent ubuntu
|
|
# TODO - enforce this, or split it out...
|
|
|
|
module Lab
|
|
module Modifier
|
|
module Test
|
|
def install_nmap
|
|
run_command("sudo apt-get install nmap")
|
|
end
|
|
|
|
def nmap(options)
|
|
run_command("nmap #{filter_input(options)}")
|
|
end
|
|
end
|
|
end
|
|
end
|