├── .gitmodules ├── custom ├── cfg │ └── global │ │ ├── crontab │ │ ├── fmadm │ │ └── zpool │ │ ├── root │ │ ├── etc │ │ │ └── ipf │ │ │ │ ├── ipf.conf │ │ │ │ └── ipf6.conf │ │ └── root │ │ │ ├── .bashrc │ │ │ ├── .inputrc │ │ │ └── .vimrc │ │ └── script │ │ ├── 15-ipv6.sh │ │ └── 20-sendmail.sh ├── script │ └── postboot.sh └── smf │ └── postboot.xml ├── deploy ├── local └── sbin │ └── zrep └── readme.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/.gitmodules -------------------------------------------------------------------------------- /custom/cfg/global/crontab/fmadm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/crontab/fmadm -------------------------------------------------------------------------------- /custom/cfg/global/crontab/zpool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/crontab/zpool -------------------------------------------------------------------------------- /custom/cfg/global/root/etc/ipf/ipf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/root/etc/ipf/ipf.conf -------------------------------------------------------------------------------- /custom/cfg/global/root/etc/ipf/ipf6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/root/etc/ipf/ipf6.conf -------------------------------------------------------------------------------- /custom/cfg/global/root/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/root/root/.bashrc -------------------------------------------------------------------------------- /custom/cfg/global/root/root/.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/root/root/.inputrc -------------------------------------------------------------------------------- /custom/cfg/global/root/root/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/root/root/.vimrc -------------------------------------------------------------------------------- /custom/cfg/global/script/15-ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/script/15-ipv6.sh -------------------------------------------------------------------------------- /custom/cfg/global/script/20-sendmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/cfg/global/script/20-sendmail.sh -------------------------------------------------------------------------------- /custom/script/postboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/script/postboot.sh -------------------------------------------------------------------------------- /custom/smf/postboot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/custom/smf/postboot.xml -------------------------------------------------------------------------------- /deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/deploy -------------------------------------------------------------------------------- /local/sbin/zrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/local/sbin/zrep -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylime/smartos-config/HEAD/readme.md --------------------------------------------------------------------------------