Advertisement
Guest User

first snappy app with nmap

a guest
Mar 15th, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.69 KB | None | 0 0
  1. name: unisys-test
  2. version: 1.0
  3. # The vendor for the snap (replace 'Vendor <email@example.com>')
  4. vendor: erik.arfvidson@unisys.com
  5. summary: This app serves a simple webpage with a helloworld.html
  6. description: A basic webserver hello world application
  7. icon: icon.png
  8. services:
  9.   webui-nmap:
  10.     start: bin/webui-nmap
  11. parts:
  12.   golang-static-http:
  13.     plugin: go
  14.     source: git://github.com/mikix/golang-static-http
  15.     stage-packages:
  16.       - nmap
  17.     filesets:
  18.       nmap:
  19.         - usr/bin/nmap
  20.         - lib
  21.         - usr/lib
  22.       go-server:
  23.         - bin/golang-*
  24.     snap:
  25.       - $nmap
  26.       - $go-server
  27.   glue:
  28.     plugin: copy
  29.     files:
  30.       webui-nmap: bin/webui-nmap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement