├── .gitattributes ├── .gitignore ├── .idea └── .name ├── README.md ├── ahoymatey ├── debug.py ├── error_mount-pcfs-not-owner-truss-partSlice.log ├── error_mount-pcfs-not-owner-truss.log └── mnt │ └── usbkey │ └── scripts │ └── joysetup.sh └── sailboat └── opt └── custom ├── bin ├── add-nic ├── change-root-pw ├── create-vm ├── debug.sh ├── img ├── info ├── ipfilterStats ├── list ├── list-ip ├── list-short ├── list-short-ip ├── list-tech ├── mapper ├── meminfo ├── refreshipf ├── remove-nic ├── restartipf ├── set-primary-gateway ├── smartos_self_test ├── start ├── update-nic └── update-spoofing ├── configs └── dmz │ └── ipf │ ├── ipf-simple.conf │ ├── ipf-template.conf │ ├── ipnat-simple.conf │ └── ipnat-template.conf ├── json ├── ISO_TEMPLATE.JSON ├── KVM_TEMPLATE.JSON ├── LX_TEMPLATE.JSON ├── OS_JOYENT_TEMPLATE.JSON ├── templates │ ├── iso.json │ ├── kvm-create-from-imported-image.json │ ├── kvm-default.json │ ├── kvm-imported-image.json │ ├── kvm-linux-elk.json │ ├── kvm-win-10-enterprise-preview.json │ ├── kvm-win-standard.json │ ├── kvm-zvol.json │ ├── kvm.json │ ├── lx-ubuntu-14.04.json │ ├── lx.json │ ├── manifest.json │ ├── os-joyent-base64.json │ ├── os-joyent-fifo-leofs_1.2.5.json │ ├── os-joyent-fifo.json │ └── os-joyent.json └── update │ ├── add_cdrom.json │ ├── add_disk.json │ └── update_resolvers-Google_DNS.json ├── share └── svc │ ├── add-ssh-pub-key-to-root.sh │ ├── change-to-static-ip.sh │ ├── custom-environment-path.sh │ └── resolvers.sh └── smf ├── add-ssh-pub-key-to-root.xml ├── change-to-static-ip.xml.disabled ├── custom-environment-variables.xml └── resolvers.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | sailboat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ![Save The World](https://pbs.twimg.com/media/CPp4KL0WEAAt3ox.png) 3 | -------------------------------------------------------------------------------- /ahoymatey/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/ahoymatey/debug.py -------------------------------------------------------------------------------- /ahoymatey/error_mount-pcfs-not-owner-truss-partSlice.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/ahoymatey/error_mount-pcfs-not-owner-truss-partSlice.log -------------------------------------------------------------------------------- /ahoymatey/error_mount-pcfs-not-owner-truss.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/ahoymatey/error_mount-pcfs-not-owner-truss.log -------------------------------------------------------------------------------- /ahoymatey/mnt/usbkey/scripts/joysetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/ahoymatey/mnt/usbkey/scripts/joysetup.sh -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/add-nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/add-nic -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/change-root-pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/change-root-pw -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/create-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/create-vm -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/debug.sh -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/img -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/info -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/ipfilterStats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/ipfilterStats -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/list -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/list-ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/list-ip -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/list-short: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/list-short -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/list-short-ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/list-short-ip -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/list-tech: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/list-tech -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/mapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/mapper -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/meminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/meminfo -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/refreshipf: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | svcadm refresh /network/ipfilter 4 | -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/remove-nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/remove-nic -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/restartipf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/restartipf -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/set-primary-gateway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/set-primary-gateway -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/smartos_self_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/smartos_self_test -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/start -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/update-nic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/update-nic -------------------------------------------------------------------------------- /sailboat/opt/custom/bin/update-spoofing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/bin/update-spoofing -------------------------------------------------------------------------------- /sailboat/opt/custom/configs/dmz/ipf/ipf-simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/configs/dmz/ipf/ipf-simple.conf -------------------------------------------------------------------------------- /sailboat/opt/custom/configs/dmz/ipf/ipf-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/configs/dmz/ipf/ipf-template.conf -------------------------------------------------------------------------------- /sailboat/opt/custom/configs/dmz/ipf/ipnat-simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/configs/dmz/ipf/ipnat-simple.conf -------------------------------------------------------------------------------- /sailboat/opt/custom/configs/dmz/ipf/ipnat-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/configs/dmz/ipf/ipnat-template.conf -------------------------------------------------------------------------------- /sailboat/opt/custom/json/ISO_TEMPLATE.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/ISO_TEMPLATE.JSON -------------------------------------------------------------------------------- /sailboat/opt/custom/json/KVM_TEMPLATE.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/KVM_TEMPLATE.JSON -------------------------------------------------------------------------------- /sailboat/opt/custom/json/LX_TEMPLATE.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/LX_TEMPLATE.JSON -------------------------------------------------------------------------------- /sailboat/opt/custom/json/OS_JOYENT_TEMPLATE.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/OS_JOYENT_TEMPLATE.JSON -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/iso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/iso.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-create-from-imported-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-create-from-imported-image.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-default.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-imported-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-imported-image.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-linux-elk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-linux-elk.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-win-10-enterprise-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-win-10-enterprise-preview.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-win-standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-win-standard.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm-zvol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm-zvol.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/kvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/kvm.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/lx-ubuntu-14.04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/lx-ubuntu-14.04.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/lx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/lx.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/manifest.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/os-joyent-base64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/os-joyent-base64.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/os-joyent-fifo-leofs_1.2.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/os-joyent-fifo-leofs_1.2.5.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/os-joyent-fifo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/os-joyent-fifo.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/templates/os-joyent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/templates/os-joyent.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/update/add_cdrom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/update/add_cdrom.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/update/add_disk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/update/add_disk.json -------------------------------------------------------------------------------- /sailboat/opt/custom/json/update/update_resolvers-Google_DNS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/json/update/update_resolvers-Google_DNS.json -------------------------------------------------------------------------------- /sailboat/opt/custom/share/svc/add-ssh-pub-key-to-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/share/svc/add-ssh-pub-key-to-root.sh -------------------------------------------------------------------------------- /sailboat/opt/custom/share/svc/change-to-static-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/share/svc/change-to-static-ip.sh -------------------------------------------------------------------------------- /sailboat/opt/custom/share/svc/custom-environment-path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/share/svc/custom-environment-path.sh -------------------------------------------------------------------------------- /sailboat/opt/custom/share/svc/resolvers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/share/svc/resolvers.sh -------------------------------------------------------------------------------- /sailboat/opt/custom/smf/add-ssh-pub-key-to-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/smf/add-ssh-pub-key-to-root.xml -------------------------------------------------------------------------------- /sailboat/opt/custom/smf/change-to-static-ip.xml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/smf/change-to-static-ip.xml.disabled -------------------------------------------------------------------------------- /sailboat/opt/custom/smf/custom-environment-variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/smf/custom-environment-variables.xml -------------------------------------------------------------------------------- /sailboat/opt/custom/smf/resolvers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShellLand/sailboat/HEAD/sailboat/opt/custom/smf/resolvers.xml --------------------------------------------------------------------------------