├── LICENSE ├── README.md ├── examples ├── bozohttpd.conf ├── empty.conf ├── namp.conf ├── nginx.conf ├── nginxflaskapi.conf ├── nginxnode.conf └── nginxphp.conf ├── include ├── define.sh ├── deps.sh ├── helpers.sh ├── mdns.sh └── platform.sh ├── sailor.sh └── ships ├── common ├── Darwin │ └── opt │ │ └── pkg │ │ ├── etc │ │ ├── gnupg │ │ │ └── pkgsrc.gpg │ │ ├── pkg_install.conf │ │ └── pkgin │ │ │ └── repositories.conf │ │ └── share │ │ └── gnupg │ │ └── pkgsrc-security.gpg ├── Linux │ └── etc │ │ ├── group │ │ ├── gshadow │ │ ├── hosts │ │ ├── login.defs │ │ ├── nsswitch.conf │ │ ├── passwd │ │ └── shadow ├── NetBSD │ └── etc │ │ ├── defaults │ │ ├── daily.conf │ │ ├── monthly.conf │ │ ├── pf.boot.conf │ │ ├── rc.conf │ │ ├── security.conf │ │ └── weekly.conf │ │ ├── group │ │ ├── master.passwd │ │ ├── mk.conf │ │ ├── nsswitch.conf │ │ ├── pam.d │ │ ├── README │ │ ├── cron │ │ ├── display_manager │ │ ├── ftpd │ │ ├── gdm │ │ ├── imap │ │ ├── kde │ │ ├── login │ │ ├── other │ │ ├── passwd │ │ ├── pop3 │ │ ├── ppp │ │ ├── racoon │ │ ├── rexecd │ │ ├── rsh │ │ ├── sshd │ │ ├── su │ │ ├── system │ │ ├── telnetd │ │ ├── xdm │ │ └── xserver │ │ ├── passwd │ │ ├── pwd.db │ │ └── spwd.db └── all │ └── etc │ ├── rc.conf │ ├── rc.subr │ └── services ├── namp └── usr │ └── pkg │ └── etc │ └── httpd │ └── httpd.conf ├── nginx └── usr │ └── pkg │ └── etc │ └── nginx │ └── nginx.conf ├── nginxflaskapi ├── PREFIX │ └── etc │ │ └── nginx │ │ ├── nginx.conf │ │ └── sites │ │ └── localhost └── var │ └── flask │ └── example.py ├── nginxnode ├── PREFIX │ └── etc │ │ └── nginx │ │ ├── nginx.conf │ │ └── sites │ │ └── localhost └── var │ └── node │ └── hello.js └── nginxphp ├── PREFIX └── etc │ ├── nginx │ ├── fastcgi_phpfpm │ ├── global.conf │ ├── logs.conf │ ├── nginx.conf │ ├── php.conf │ └── sites │ │ └── localhost │ ├── php-fpm.conf │ └── php.d │ └── extensions.ini └── var └── www └── php └── index.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/README.md -------------------------------------------------------------------------------- /examples/bozohttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/bozohttpd.conf -------------------------------------------------------------------------------- /examples/empty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/empty.conf -------------------------------------------------------------------------------- /examples/namp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/namp.conf -------------------------------------------------------------------------------- /examples/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/nginx.conf -------------------------------------------------------------------------------- /examples/nginxflaskapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/nginxflaskapi.conf -------------------------------------------------------------------------------- /examples/nginxnode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/nginxnode.conf -------------------------------------------------------------------------------- /examples/nginxphp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/examples/nginxphp.conf -------------------------------------------------------------------------------- /include/define.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/include/define.sh -------------------------------------------------------------------------------- /include/deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/include/deps.sh -------------------------------------------------------------------------------- /include/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/include/helpers.sh -------------------------------------------------------------------------------- /include/mdns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/include/mdns.sh -------------------------------------------------------------------------------- /include/platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/include/platform.sh -------------------------------------------------------------------------------- /sailor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/sailor.sh -------------------------------------------------------------------------------- /ships/common/Darwin/opt/pkg/etc/gnupg/pkgsrc.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Darwin/opt/pkg/etc/gnupg/pkgsrc.gpg -------------------------------------------------------------------------------- /ships/common/Darwin/opt/pkg/etc/pkg_install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Darwin/opt/pkg/etc/pkg_install.conf -------------------------------------------------------------------------------- /ships/common/Darwin/opt/pkg/etc/pkgin/repositories.conf: -------------------------------------------------------------------------------- 1 | http://pkgsrc.joyent.com/packages/Darwin/trunk/x86_64/All 2 | -------------------------------------------------------------------------------- /ships/common/Darwin/opt/pkg/share/gnupg/pkgsrc-security.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Darwin/opt/pkg/share/gnupg/pkgsrc-security.gpg -------------------------------------------------------------------------------- /ships/common/Linux/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/group -------------------------------------------------------------------------------- /ships/common/Linux/etc/gshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/gshadow -------------------------------------------------------------------------------- /ships/common/Linux/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/hosts -------------------------------------------------------------------------------- /ships/common/Linux/etc/login.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/login.defs -------------------------------------------------------------------------------- /ships/common/Linux/etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/nsswitch.conf -------------------------------------------------------------------------------- /ships/common/Linux/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/passwd -------------------------------------------------------------------------------- /ships/common/Linux/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/Linux/etc/shadow -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/defaults/daily.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/defaults/daily.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/defaults/monthly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/defaults/monthly.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/defaults/pf.boot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/defaults/pf.boot.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/defaults/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/defaults/rc.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/defaults/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/defaults/security.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/defaults/weekly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/defaults/weekly.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/group -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/master.passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/master.passwd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/mk.conf: -------------------------------------------------------------------------------- 1 | PKG_RCD_SCRIPTS= yes 2 | -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/nsswitch.conf -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/README -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/cron -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/display_manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/display_manager -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/ftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/ftpd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/gdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/gdm -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/imap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/imap -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/kde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/kde -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/login -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/other -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/passwd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/pop3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/pop3 -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/ppp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/ppp -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/racoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/racoon -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/rexecd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/rexecd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/rsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/rsh -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/sshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/sshd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/su -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/system -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/telnetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/telnetd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/xdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/xdm -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pam.d/xserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pam.d/xserver -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/passwd -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/pwd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/pwd.db -------------------------------------------------------------------------------- /ships/common/NetBSD/etc/spwd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/NetBSD/etc/spwd.db -------------------------------------------------------------------------------- /ships/common/all/etc/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/all/etc/rc.conf -------------------------------------------------------------------------------- /ships/common/all/etc/rc.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/all/etc/rc.subr -------------------------------------------------------------------------------- /ships/common/all/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/common/all/etc/services -------------------------------------------------------------------------------- /ships/namp/usr/pkg/etc/httpd/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/namp/usr/pkg/etc/httpd/httpd.conf -------------------------------------------------------------------------------- /ships/nginx/usr/pkg/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginx/usr/pkg/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /ships/nginxflaskapi/PREFIX/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxflaskapi/PREFIX/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /ships/nginxflaskapi/PREFIX/etc/nginx/sites/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxflaskapi/PREFIX/etc/nginx/sites/localhost -------------------------------------------------------------------------------- /ships/nginxflaskapi/var/flask/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxflaskapi/var/flask/example.py -------------------------------------------------------------------------------- /ships/nginxnode/PREFIX/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxnode/PREFIX/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /ships/nginxnode/PREFIX/etc/nginx/sites/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxnode/PREFIX/etc/nginx/sites/localhost -------------------------------------------------------------------------------- /ships/nginxnode/var/node/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxnode/var/node/hello.js -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/nginx/fastcgi_phpfpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/nginx/fastcgi_phpfpm -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/nginx/global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/nginx/global.conf -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/nginx/logs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/nginx/logs.conf -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/nginx/php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/nginx/php.conf -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/nginx/sites/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/nginx/sites/localhost -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NetBSDfr/sailor/HEAD/ships/nginxphp/PREFIX/etc/php-fpm.conf -------------------------------------------------------------------------------- /ships/nginxphp/PREFIX/etc/php.d/extensions.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ships/nginxphp/var/www/php/index.php: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------