├── .gitignore ├── Makefile ├── README.md ├── create_plugin ├── pbi └── .gitignore ├── pkg ├── couchpotato │ └── .gitignore ├── emby │ └── .gitignore ├── headphones │ └── .gitignore ├── htpc-manager │ └── .gitignore ├── lazylibrarian │ └── .gitignore ├── madsonic │ └── .gitignore ├── maraschino │ └── .gitignore ├── mineos │ └── .gitignore ├── mylar │ └── .gitignore ├── nextcloud │ └── .gitignore ├── nzbhydra │ └── .gitignore ├── owncloud │ └── .gitignore ├── plexmediaserver │ └── .gitignore ├── pyload │ └── .gitignore ├── resilio │ └── .gitignore ├── sabnzbd │ └── .gitignore ├── sickbeard │ └── .gitignore ├── sickrage │ └── .gitignore ├── sonarr │ └── .gitignore ├── subsonic │ └── .gitignore ├── syncthing │ └── .gitignore ├── transmission │ └── .gitignore ├── xdm │ └── .gitignore └── xmrig │ └── .gitignore ├── plugins ├── couchpotato │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── couchpotatoUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── open.html │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ ├── default.png │ │ └── freenas │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── crashplan │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── crashplanUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── license.html │ │ │ │ │ └── open.html │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ ├── default.png │ │ ├── freenas │ │ └── tweak-rcconf │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── emby │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── embyUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── open.html │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ └── freenas │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── firefly │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── fireflyUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── templates │ │ │ │ │ └── edit.html │ │ │ │ ├── urls.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ │ ├── freenas │ │ └── tweak-rcconf │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── headphones │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── headphonesUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── htpc-manager │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── htpcmanagerUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── lazylibrarian │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── lazylibrarianUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── madsonic │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── madsonicUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── edit.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── maraschino │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── maraschinoUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── mineos │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── mineosUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto__del_field_mineos_mineos_locale__del_field_mineos_mineos_mask__de.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── edit.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── minidlna │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── default.png │ │ ├── freenas │ │ ├── nginx_location │ │ ├── php-fpm.conf │ │ ├── plugins │ │ │ └── minidlna │ │ │ │ ├── .zfproject.xml │ │ │ │ ├── application │ │ │ │ ├── Bootstrap.php │ │ │ │ ├── bin │ │ │ │ │ └── doctrine.php │ │ │ │ ├── configs │ │ │ │ │ └── application.ini │ │ │ │ ├── controllers │ │ │ │ │ ├── ErrorController.php │ │ │ │ │ ├── FreenasController.php │ │ │ │ │ └── IndexController.php │ │ │ │ ├── forms │ │ │ │ │ └── Edit.php │ │ │ │ ├── libs │ │ │ │ │ └── MiniDLNA.php │ │ │ │ ├── models │ │ │ │ │ ├── Entity │ │ │ │ │ │ └── MiniDLNA.php │ │ │ │ │ └── Proxy │ │ │ │ │ │ └── __CG__EntityMiniDLNA.php │ │ │ │ └── views │ │ │ │ │ ├── helpers │ │ │ │ │ └── .keep │ │ │ │ │ └── scripts │ │ │ │ │ ├── error │ │ │ │ │ └── error.phtml │ │ │ │ │ └── index │ │ │ │ │ ├── edit.phtml │ │ │ │ │ └── index.phtml │ │ │ │ ├── data │ │ │ │ └── db │ │ │ │ │ └── .keepme │ │ │ │ ├── docs │ │ │ │ └── README.txt │ │ │ │ ├── library │ │ │ │ └── tivoka │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Tivoka.php │ │ │ │ │ ├── example │ │ │ │ │ ├── client.php │ │ │ │ │ └── server.php │ │ │ │ │ ├── include.php │ │ │ │ │ └── lib │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Tivoka.php │ │ │ │ │ ├── client │ │ │ │ │ ├── BatchRequest.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Notification.php │ │ │ │ │ ├── Request.php │ │ │ │ │ └── oauth │ │ │ │ │ │ ├── Consumer.php │ │ │ │ │ │ └── Request.php │ │ │ │ │ └── server │ │ │ │ │ ├── MethodWrapper.php │ │ │ │ │ ├── Processor.php │ │ │ │ │ └── Server.php │ │ │ │ ├── public │ │ │ │ ├── .htaccess │ │ │ │ └── index.php │ │ │ │ └── tests │ │ │ │ ├── application │ │ │ │ └── controllers │ │ │ │ │ └── IndexControllerTest.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── library │ │ │ │ └── .keep │ │ │ │ └── phpunit.xml │ │ └── tweak-rcconf │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── mylar │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── mylarUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── nextcloud │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── nextcloudUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── nzbhydra │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── nzbhydraUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── owncloud │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── owncloudUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── plexmediaserver │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── plexmediaserverUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── 0002_auto__add_field_plexmediaserver_disable_remote_security.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── edit.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── pyload │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ ├── pyload-setup │ │ │ ├── files.db │ │ │ ├── files.version │ │ │ ├── plugin.conf │ │ │ └── pyload.conf │ │ └── pyloadUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── resilio │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── resilioUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── edit.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── post-remove.sh │ │ └── pre-remove.sh ├── sabnzbd │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── sabnzbdUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── sickbeard │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── sickbeardUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── sickrage │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── sickrageUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── sonarr │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── sonarrUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── subsonic │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── subsonicUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto__del_field_subsonic_subsonic_locale.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── edit.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── syncthing │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── syncthingUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh ├── transmission │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── transmissionUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto__del_field_transmission_allowed__del_field_transmission_blocklist.py │ │ │ │ ├── 0003_auto__del_field_transmission_rpc_whitelist_enabled__del_field_transmis.py │ │ │ │ ├── 0004_auto__del_field_transmission_peerlimit_torrent__del_field_transmission.py │ │ │ │ ├── 0005_auto__del_field_transmission_peer_socket_tos.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── edit.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ └── pre-remove.sh ├── xdm │ ├── external-links │ ├── pbi.conf │ ├── resources │ │ ├── control │ │ ├── control.py │ │ ├── default.png │ │ ├── freenas │ │ └── xdmUI │ │ │ ├── __init__.py │ │ │ ├── freenas │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── open.html │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── settings.py │ │ │ └── urls.py │ └── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ └── pre-remove.sh └── xmrig │ ├── pbi.conf │ ├── resources │ ├── control │ ├── control.py │ ├── default.png │ ├── freenas │ └── xmrigUI │ │ ├── __init__.py │ │ ├── freenas │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_field_xmrig_av__add_field_xmrig_threads__add_field_xmrig_saf.py │ │ │ ├── 0003_auto__add_field_xmrig_variant.py │ │ │ ├── 0004_auto__add_field_xmrig_rig_id__add_field_xmrig_user_agent__add_field_xm.py │ │ │ ├── 0005_auto__add_field_xmrig_tls__add_field_xmrig_tls_fingerprint__add_field_.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── edit.html │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ │ ├── manage.py │ │ ├── settings.py │ │ └── urls.py │ └── scripts │ ├── post-install.sh │ ├── post-portmake.sh │ └── pre-remove.sh ├── ports ├── deskutils │ ├── lazylibrarian │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── lazylibrarian.in │ │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist │ └── mylar │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ ├── mylar.in │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist ├── games │ └── mineos │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── files │ │ ├── mineos.in │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist ├── multimedia │ ├── couchpotato │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── couchpotato.in │ │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist │ ├── headphones │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── headphones.in │ │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist │ ├── htpc-manager │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── htpc-manager.in │ │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist │ ├── maraschino │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── maraschino.in │ │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist │ ├── sickbeard │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── pkg-message.in │ │ │ └── sickbeard.in │ │ ├── pkg-descr │ │ └── pkg-plist │ ├── sickrage │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── pkg-message.in │ │ │ └── sickrage.in │ │ ├── pkg-descr │ │ └── pkg-plist │ └── xdm │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ ├── pkg-message.in │ │ └── xdm.in │ │ ├── pkg-descr │ │ └── pkg-plist ├── news │ └── nzbhydra │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ ├── nzbhydra.in │ │ └── pkg-message.in │ │ ├── pkg-descr │ │ └── pkg-plist └── www │ └── pyload │ ├── .gitignore │ ├── Makefile │ ├── distinfo │ ├── files │ ├── patch-module-utils.py │ ├── pkg-message.in │ └── pyload.in │ ├── pkg-descr │ └── pkg-plist └── src ├── libsh ├── Makefile └── functions.sh ├── pbi-manager ├── INSTALL ├── Makefile ├── etc │ └── pbi.conf ├── icons │ ├── default.png │ └── patch.png ├── install.sh ├── man1 │ ├── pbi_add.1 │ ├── pbi_browser.1 │ ├── pbi_create.1 │ ├── pbi_delete.1 │ ├── pbi_icon.1 │ ├── pbi_indextool.1 │ ├── pbi_info.1 │ ├── pbi_listrepo.1 │ ├── pbi_metatool.1 │ ├── pbi_patch.1 │ ├── pbi_update.1 │ └── pbi_update_hashdir.1 ├── man5 │ └── pbi.conf.5 ├── man8 │ ├── pbi_addrepo.8 │ ├── pbi_autobuild.8 │ ├── pbi_deleterepo.8 │ ├── pbi_makepatch.8 │ ├── pbi_makeport.8 │ ├── pbi_makerepo.8 │ └── pbid.8 ├── mkport.sh ├── module-examples │ ├── convertoldmod.sh │ ├── firefox │ │ ├── LICENSE │ │ ├── external-links │ │ ├── pbi.conf │ │ ├── resources │ │ │ ├── firefox.png │ │ │ ├── gui_banner.png │ │ │ └── gui_sidebanner.png │ │ ├── scripts │ │ │ ├── post-install.sh │ │ │ ├── post-portmake.sh │ │ │ ├── pre-install.sh │ │ │ └── pre-remove.sh │ │ ├── xdg-desktop │ │ │ └── firefox.desktop │ │ └── xdg-menu │ │ │ └── firefox3.desktop │ └── gimp │ │ ├── LICENSE │ │ ├── external-links │ │ ├── pbi.conf │ │ ├── resources │ │ ├── gimp.png │ │ ├── gui_banner.png │ │ └── gui_sidebanner.png │ │ ├── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ ├── pre-portmake.sh │ │ └── pre-remove.sh │ │ ├── xdg-desktop │ │ └── gimp.desktop │ │ ├── xdg-menu │ │ └── gimp.desktop │ │ └── xdg-mime │ │ ├── gimp-xdg.png │ │ └── gimp-xdg.xml ├── pbi-manager ├── port-files │ ├── Makefile │ ├── files │ │ └── pkg-message.in │ ├── pkg-descr │ └── pkg-plist ├── rc.d │ ├── ldpbiconfig │ └── pbid ├── repo │ └── pcbsd.rpo └── wrapper │ ├── Makefile │ ├── example.pbiwrapper.ldhints │ ├── example.pbiwrapper.pbiopt │ └── main.c ├── pbi-manager10 ├── INSTALL ├── Makefile ├── etc │ └── pbi.conf ├── icons │ ├── default.png │ └── patch.png ├── install.sh ├── man1 │ ├── pbi_add.1 │ ├── pbi_browser.1 │ ├── pbi_create.1 │ ├── pbi_delete.1 │ ├── pbi_icon.1 │ ├── pbi_indextool.1 │ ├── pbi_info.1 │ ├── pbi_listrepo.1 │ ├── pbi_metatool.1 │ ├── pbi_patch.1 │ ├── pbi_update.1 │ └── pbi_update_hashdir.1 ├── man5 │ └── pbi.conf.5 ├── man8 │ ├── pbi_addrepo.8 │ ├── pbi_autobuild.8 │ ├── pbi_deleterepo.8 │ ├── pbi_makepatch.8 │ ├── pbi_makeport.8 │ ├── pbi_makerepo.8 │ └── pbid.8 ├── mkport.sh ├── module-examples │ ├── convertoldmod.sh │ ├── firefox │ │ ├── LICENSE │ │ ├── external-links │ │ ├── pbi.conf │ │ ├── resources │ │ │ ├── firefox.png │ │ │ ├── gui_banner.png │ │ │ └── gui_sidebanner.png │ │ ├── scripts │ │ │ ├── post-install.sh │ │ │ ├── post-portmake.sh │ │ │ ├── pre-install.sh │ │ │ └── pre-remove.sh │ │ ├── xdg-desktop │ │ │ └── firefox.desktop │ │ └── xdg-menu │ │ │ └── firefox3.desktop │ └── gimp │ │ ├── LICENSE │ │ ├── external-links │ │ ├── pbi.conf │ │ ├── resources │ │ ├── gimp.png │ │ ├── gui_banner.png │ │ └── gui_sidebanner.png │ │ ├── scripts │ │ ├── post-install.sh │ │ ├── post-portmake.sh │ │ ├── pre-install.sh │ │ ├── pre-portmake.sh │ │ └── pre-remove.sh │ │ ├── xdg-desktop │ │ └── gimp.desktop │ │ ├── xdg-menu │ │ └── gimp.desktop │ │ └── xdg-mime │ │ ├── gimp-xdg.png │ │ └── gimp-xdg.xml ├── pbi-manager ├── port-files │ ├── Makefile │ ├── files │ │ └── pkg-message.in │ ├── pkg-descr │ └── pkg-plist ├── rc.d │ ├── ldpbiconfig │ └── pbid ├── repo │ └── pcbsd.rpo └── wrapper │ ├── Makefile │ ├── example.pbiwrapper.ldhints │ ├── example.pbiwrapper.pbiopt │ └── main.c └── pbi-wrapper ├── Makefile └── pbiwrapper.c /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/README.md -------------------------------------------------------------------------------- /create_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/create_plugin -------------------------------------------------------------------------------- /pbi/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/couchpotato/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/emby/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/headphones/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/htpc-manager/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/lazylibrarian/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/madsonic/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/maraschino/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/mineos/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/mylar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/nextcloud/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/nzbhydra/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/owncloud/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/plexmediaserver/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/pyload/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/resilio/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/sabnzbd/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/sickbeard/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/sickrage/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/sonarr/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/subsonic/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/syncthing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/transmission/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/xdm/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /pkg/xmrig/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /plugins/couchpotato/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/external-links -------------------------------------------------------------------------------- /plugins/couchpotato/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/pbi.conf -------------------------------------------------------------------------------- /plugins/couchpotato/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/control -------------------------------------------------------------------------------- /plugins/couchpotato/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/control.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/manage.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/settings.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/couchpotatoUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/couchpotatoUI/urls.py -------------------------------------------------------------------------------- /plugins/couchpotato/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/resources/default.png -------------------------------------------------------------------------------- /plugins/couchpotato/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/couchpotato/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/couchpotato/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/couchpotato/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/couchpotato/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/crashplan/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/pbi.conf -------------------------------------------------------------------------------- /plugins/crashplan/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/control -------------------------------------------------------------------------------- /plugins/crashplan/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/control.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/templates/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/templates/license.html -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/manage.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/settings.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/crashplanUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/crashplanUI/urls.py -------------------------------------------------------------------------------- /plugins/crashplan/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/default.png -------------------------------------------------------------------------------- /plugins/crashplan/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/crashplan/resources/tweak-rcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/resources/tweak-rcconf -------------------------------------------------------------------------------- /plugins/crashplan/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/crashplan/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/crashplan/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/crashplan/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/crashplan/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/emby/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/external-links -------------------------------------------------------------------------------- /plugins/emby/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/pbi.conf -------------------------------------------------------------------------------- /plugins/emby/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/control -------------------------------------------------------------------------------- /plugins/emby/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/control.py -------------------------------------------------------------------------------- /plugins/emby/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/default.png -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/templates/open.html: -------------------------------------------------------------------------------- 1 |

Emby can be found here by default.

2 | -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/manage.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/settings.py -------------------------------------------------------------------------------- /plugins/emby/resources/embyUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/resources/embyUI/urls.py -------------------------------------------------------------------------------- /plugins/emby/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/emby/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/emby/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/emby/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/emby/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/firefly/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/pbi.conf -------------------------------------------------------------------------------- /plugins/firefly/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/control -------------------------------------------------------------------------------- /plugins/firefly/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/control.py -------------------------------------------------------------------------------- /plugins/firefly/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/default.png -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/migrations/0001_initial.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/manage.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/settings.py -------------------------------------------------------------------------------- /plugins/firefly/resources/fireflyUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/fireflyUI/urls.py -------------------------------------------------------------------------------- /plugins/firefly/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/firefly/resources/tweak-rcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/resources/tweak-rcconf -------------------------------------------------------------------------------- /plugins/firefly/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/firefly/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/firefly/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/firefly/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/firefly/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/headphones/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/external-links -------------------------------------------------------------------------------- /plugins/headphones/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/pbi.conf -------------------------------------------------------------------------------- /plugins/headphones/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/control -------------------------------------------------------------------------------- /plugins/headphones/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/control.py -------------------------------------------------------------------------------- /plugins/headphones/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/default.png -------------------------------------------------------------------------------- /plugins/headphones/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/manage.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/settings.py -------------------------------------------------------------------------------- /plugins/headphones/resources/headphonesUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/resources/headphonesUI/urls.py -------------------------------------------------------------------------------- /plugins/headphones/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/headphones/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/headphones/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/headphones/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/htpc-manager/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/external-links -------------------------------------------------------------------------------- /plugins/htpc-manager/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/pbi.conf -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/control -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/control.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/default.png -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/templates/open.html: -------------------------------------------------------------------------------- 1 |

HTPC-Manager can be found here by default.

2 | -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/manage.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/settings.py -------------------------------------------------------------------------------- /plugins/htpc-manager/resources/htpcmanagerUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/resources/htpcmanagerUI/urls.py -------------------------------------------------------------------------------- /plugins/htpc-manager/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/htpc-manager/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/htpc-manager/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/htpc-manager/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/lazylibrarian/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/pbi.conf -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/control -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/control.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/default.png -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/manage.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/settings.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/resources/lazylibrarianUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/resources/lazylibrarianUI/urls.py -------------------------------------------------------------------------------- /plugins/lazylibrarian/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/lazylibrarian/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/lazylibrarian/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/lazylibrarian/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/madsonic/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/external-links -------------------------------------------------------------------------------- /plugins/madsonic/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/pbi.conf -------------------------------------------------------------------------------- /plugins/madsonic/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/control -------------------------------------------------------------------------------- /plugins/madsonic/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/control.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/default.png -------------------------------------------------------------------------------- /plugins/madsonic/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/manage.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/settings.py -------------------------------------------------------------------------------- /plugins/madsonic/resources/madsonicUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/resources/madsonicUI/urls.py -------------------------------------------------------------------------------- /plugins/madsonic/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/madsonic/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/madsonic/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/madsonic/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/maraschino/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/pbi.conf -------------------------------------------------------------------------------- /plugins/maraschino/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/control -------------------------------------------------------------------------------- /plugins/maraschino/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/control.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/default.png -------------------------------------------------------------------------------- /plugins/maraschino/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/manage.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/settings.py -------------------------------------------------------------------------------- /plugins/maraschino/resources/maraschinoUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/resources/maraschinoUI/urls.py -------------------------------------------------------------------------------- /plugins/maraschino/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/maraschino/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/maraschino/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/maraschino/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/mineos/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/external-links -------------------------------------------------------------------------------- /plugins/mineos/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/pbi.conf -------------------------------------------------------------------------------- /plugins/mineos/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/control -------------------------------------------------------------------------------- /plugins/mineos/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/control.py -------------------------------------------------------------------------------- /plugins/mineos/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/default.png -------------------------------------------------------------------------------- /plugins/mineos/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/migrations/0001_initial.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/manage.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/settings.py -------------------------------------------------------------------------------- /plugins/mineos/resources/mineosUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/resources/mineosUI/urls.py -------------------------------------------------------------------------------- /plugins/mineos/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/mineos/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/mineos/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mineos/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/minidlna/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/pbi.conf -------------------------------------------------------------------------------- /plugins/minidlna/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/control -------------------------------------------------------------------------------- /plugins/minidlna/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/default.png -------------------------------------------------------------------------------- /plugins/minidlna/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 1 2 | -------------------------------------------------------------------------------- /plugins/minidlna/resources/nginx_location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/nginx_location -------------------------------------------------------------------------------- /plugins/minidlna/resources/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/php-fpm.conf -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/.zfproject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/.zfproject.xml -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/application/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/application/Bootstrap.php -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/application/forms/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/application/forms/Edit.php -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/application/views/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/data/db/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/docs/README.txt -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/library/tivoka/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/library/tivoka/.travis.yml -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/library/tivoka/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/library/tivoka/LICENSE -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/library/tivoka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/library/tivoka/README.md -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/library/tivoka/Tivoka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/library/tivoka/Tivoka.php -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/library/tivoka/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/library/tivoka/include.php -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/public/.htaccess -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/public/index.php -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/tests/bootstrap.php -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/tests/library/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/minidlna/resources/plugins/minidlna/tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/plugins/minidlna/tests/phpunit.xml -------------------------------------------------------------------------------- /plugins/minidlna/resources/tweak-rcconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/resources/tweak-rcconf -------------------------------------------------------------------------------- /plugins/minidlna/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/minidlna/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/minidlna/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/minidlna/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/minidlna/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/mylar/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/external-links -------------------------------------------------------------------------------- /plugins/mylar/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/pbi.conf -------------------------------------------------------------------------------- /plugins/mylar/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/control -------------------------------------------------------------------------------- /plugins/mylar/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/control.py -------------------------------------------------------------------------------- /plugins/mylar/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/default.png -------------------------------------------------------------------------------- /plugins/mylar/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/manage.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/settings.py -------------------------------------------------------------------------------- /plugins/mylar/resources/mylarUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/resources/mylarUI/urls.py -------------------------------------------------------------------------------- /plugins/mylar/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/mylar/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/mylar/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/mylar/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/nextcloud/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/external-links -------------------------------------------------------------------------------- /plugins/nextcloud/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/pbi.conf -------------------------------------------------------------------------------- /plugins/nextcloud/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/control -------------------------------------------------------------------------------- /plugins/nextcloud/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/control.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/default.png -------------------------------------------------------------------------------- /plugins/nextcloud/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/manage.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/settings.py -------------------------------------------------------------------------------- /plugins/nextcloud/resources/nextcloudUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/resources/nextcloudUI/urls.py -------------------------------------------------------------------------------- /plugins/nextcloud/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/nextcloud/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/nextcloud/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/nextcloud/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nextcloud/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/nzbhydra/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/external-links -------------------------------------------------------------------------------- /plugins/nzbhydra/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/pbi.conf -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/control -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/control.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/default.png -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/templates/open.html: -------------------------------------------------------------------------------- 1 |

NZBHydra can be found here by default.

2 | -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/manage.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/settings.py -------------------------------------------------------------------------------- /plugins/nzbhydra/resources/nzbhydraUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/resources/nzbhydraUI/urls.py -------------------------------------------------------------------------------- /plugins/nzbhydra/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/nzbhydra/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/nzbhydra/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/nzbhydra/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/owncloud/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/external-links -------------------------------------------------------------------------------- /plugins/owncloud/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/pbi.conf -------------------------------------------------------------------------------- /plugins/owncloud/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/control -------------------------------------------------------------------------------- /plugins/owncloud/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/control.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/default.png -------------------------------------------------------------------------------- /plugins/owncloud/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/manage.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/settings.py -------------------------------------------------------------------------------- /plugins/owncloud/resources/owncloudUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/resources/owncloudUI/urls.py -------------------------------------------------------------------------------- /plugins/owncloud/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/owncloud/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/owncloud/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/owncloud/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/owncloud/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/plexmediaserver/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/pbi.conf -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/control -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/control.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/default.png -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/manage.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/settings.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/resources/plexmediaserverUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/resources/plexmediaserverUI/urls.py -------------------------------------------------------------------------------- /plugins/plexmediaserver/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/plexmediaserver/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/plexmediaserver/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/plexmediaserver/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/plexmediaserver/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/pyload/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/pbi.conf -------------------------------------------------------------------------------- /plugins/pyload/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/control -------------------------------------------------------------------------------- /plugins/pyload/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/control.py -------------------------------------------------------------------------------- /plugins/pyload/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/default.png -------------------------------------------------------------------------------- /plugins/pyload/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/pyload/resources/pyload-setup/files.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyload-setup/files.db -------------------------------------------------------------------------------- /plugins/pyload/resources/pyload-setup/files.version: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /plugins/pyload/resources/pyload-setup/plugin.conf: -------------------------------------------------------------------------------- 1 | version: 1 2 | -------------------------------------------------------------------------------- /plugins/pyload/resources/pyload-setup/pyload.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyload-setup/pyload.conf -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/manage.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/settings.py -------------------------------------------------------------------------------- /plugins/pyload/resources/pyloadUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/resources/pyloadUI/urls.py -------------------------------------------------------------------------------- /plugins/pyload/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/pyload/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/pyload/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/pyload/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/pyload/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/resilio/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/pbi.conf -------------------------------------------------------------------------------- /plugins/resilio/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/control -------------------------------------------------------------------------------- /plugins/resilio/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/control.py -------------------------------------------------------------------------------- /plugins/resilio/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/default.png -------------------------------------------------------------------------------- /plugins/resilio/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/migrations/0001_initial.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/manage.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/settings.py -------------------------------------------------------------------------------- /plugins/resilio/resources/resilioUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/resources/resilioUI/urls.py -------------------------------------------------------------------------------- /plugins/resilio/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/resilio/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/resilio/scripts/post-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/scripts/post-remove.sh -------------------------------------------------------------------------------- /plugins/resilio/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/resilio/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/sabnzbd/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/external-links -------------------------------------------------------------------------------- /plugins/sabnzbd/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/pbi.conf -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/control -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/control.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/default.png -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/manage.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/settings.py -------------------------------------------------------------------------------- /plugins/sabnzbd/resources/sabnzbdUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/resources/sabnzbdUI/urls.py -------------------------------------------------------------------------------- /plugins/sabnzbd/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/sabnzbd/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/sabnzbd/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sabnzbd/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/sickbeard/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/external-links -------------------------------------------------------------------------------- /plugins/sickbeard/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/pbi.conf -------------------------------------------------------------------------------- /plugins/sickbeard/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/control -------------------------------------------------------------------------------- /plugins/sickbeard/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/control.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/default.png -------------------------------------------------------------------------------- /plugins/sickbeard/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/templates/open.html: -------------------------------------------------------------------------------- 1 |

SickBeard can be found here by default.

2 | -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/manage.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/settings.py -------------------------------------------------------------------------------- /plugins/sickbeard/resources/sickbeardUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/resources/sickbeardUI/urls.py -------------------------------------------------------------------------------- /plugins/sickbeard/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/sickbeard/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/sickbeard/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickbeard/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/sickrage/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/external-links -------------------------------------------------------------------------------- /plugins/sickrage/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/pbi.conf -------------------------------------------------------------------------------- /plugins/sickrage/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/control -------------------------------------------------------------------------------- /plugins/sickrage/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/control.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/default.png -------------------------------------------------------------------------------- /plugins/sickrage/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/manage.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/settings.py -------------------------------------------------------------------------------- /plugins/sickrage/resources/sickrageUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/resources/sickrageUI/urls.py -------------------------------------------------------------------------------- /plugins/sickrage/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/sickrage/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/sickrage/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sickrage/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/sonarr/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/external-links -------------------------------------------------------------------------------- /plugins/sonarr/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/pbi.conf -------------------------------------------------------------------------------- /plugins/sonarr/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/control -------------------------------------------------------------------------------- /plugins/sonarr/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/control.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/default.png -------------------------------------------------------------------------------- /plugins/sonarr/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/manage.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/settings.py -------------------------------------------------------------------------------- /plugins/sonarr/resources/sonarrUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/resources/sonarrUI/urls.py -------------------------------------------------------------------------------- /plugins/sonarr/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/sonarr/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/sonarr/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/sonarr/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/subsonic/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/external-links -------------------------------------------------------------------------------- /plugins/subsonic/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/pbi.conf -------------------------------------------------------------------------------- /plugins/subsonic/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/control -------------------------------------------------------------------------------- /plugins/subsonic/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/control.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/default.png -------------------------------------------------------------------------------- /plugins/subsonic/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/manage.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/settings.py -------------------------------------------------------------------------------- /plugins/subsonic/resources/subsonicUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/resources/subsonicUI/urls.py -------------------------------------------------------------------------------- /plugins/subsonic/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/subsonic/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/subsonic/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/subsonic/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/syncthing/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/pbi.conf -------------------------------------------------------------------------------- /plugins/syncthing/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/control -------------------------------------------------------------------------------- /plugins/syncthing/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/control.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/default.png -------------------------------------------------------------------------------- /plugins/syncthing/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/templates/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/freenas/templates/open.html -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/manage.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/settings.py -------------------------------------------------------------------------------- /plugins/syncthing/resources/syncthingUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/resources/syncthingUI/urls.py -------------------------------------------------------------------------------- /plugins/syncthing/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/syncthing/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/syncthing/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/syncthing/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/transmission/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/pbi.conf -------------------------------------------------------------------------------- /plugins/transmission/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/control -------------------------------------------------------------------------------- /plugins/transmission/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/control.py -------------------------------------------------------------------------------- /plugins/transmission/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/default.png -------------------------------------------------------------------------------- /plugins/transmission/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/manage.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/settings.py -------------------------------------------------------------------------------- /plugins/transmission/resources/transmissionUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/resources/transmissionUI/urls.py -------------------------------------------------------------------------------- /plugins/transmission/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/transmission/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/transmission/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/scripts/pre-install.sh -------------------------------------------------------------------------------- /plugins/transmission/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/transmission/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/xdm/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/external-links -------------------------------------------------------------------------------- /plugins/xdm/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/pbi.conf -------------------------------------------------------------------------------- /plugins/xdm/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/control -------------------------------------------------------------------------------- /plugins/xdm/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/control.py -------------------------------------------------------------------------------- /plugins/xdm/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/default.png -------------------------------------------------------------------------------- /plugins/xdm/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/templates/open.html: -------------------------------------------------------------------------------- 1 |

XDM can be found here by default.

2 | -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/manage.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/settings.py -------------------------------------------------------------------------------- /plugins/xdm/resources/xdmUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/resources/xdmUI/urls.py -------------------------------------------------------------------------------- /plugins/xdm/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/xdm/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/xdm/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xdm/scripts/pre-remove.sh -------------------------------------------------------------------------------- /plugins/xmrig/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/pbi.conf -------------------------------------------------------------------------------- /plugins/xmrig/resources/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/control -------------------------------------------------------------------------------- /plugins/xmrig/resources/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/control.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/default.png -------------------------------------------------------------------------------- /plugins/xmrig/resources/freenas: -------------------------------------------------------------------------------- 1 | api_version: 2 2 | -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/forms.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/migrations/0001_initial.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/models.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/templates/edit.html -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/urls.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/utils.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/freenas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/freenas/views.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/manage.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/settings.py -------------------------------------------------------------------------------- /plugins/xmrig/resources/xmrigUI/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/resources/xmrigUI/urls.py -------------------------------------------------------------------------------- /plugins/xmrig/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/scripts/post-install.sh -------------------------------------------------------------------------------- /plugins/xmrig/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/scripts/post-portmake.sh -------------------------------------------------------------------------------- /plugins/xmrig/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/plugins/xmrig/scripts/pre-remove.sh -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/lazylibrarian/Makefile -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/lazylibrarian/distinfo -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/files/lazylibrarian.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/lazylibrarian/files/lazylibrarian.in -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/lazylibrarian/files/pkg-message.in -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/lazylibrarian/pkg-descr -------------------------------------------------------------------------------- /ports/deskutils/lazylibrarian/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/lazylibrarian/pkg-plist -------------------------------------------------------------------------------- /ports/deskutils/mylar/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/deskutils/mylar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/mylar/Makefile -------------------------------------------------------------------------------- /ports/deskutils/mylar/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/mylar/distinfo -------------------------------------------------------------------------------- /ports/deskutils/mylar/files/mylar.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/mylar/files/mylar.in -------------------------------------------------------------------------------- /ports/deskutils/mylar/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/mylar/files/pkg-message.in -------------------------------------------------------------------------------- /ports/deskutils/mylar/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/mylar/pkg-descr -------------------------------------------------------------------------------- /ports/deskutils/mylar/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/deskutils/mylar/pkg-plist -------------------------------------------------------------------------------- /ports/games/mineos/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/games/mineos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/games/mineos/Makefile -------------------------------------------------------------------------------- /ports/games/mineos/files/mineos.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/games/mineos/files/mineos.in -------------------------------------------------------------------------------- /ports/games/mineos/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/games/mineos/files/pkg-message.in -------------------------------------------------------------------------------- /ports/games/mineos/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/games/mineos/pkg-descr -------------------------------------------------------------------------------- /ports/games/mineos/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/games/mineos/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/couchpotato/Makefile -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/couchpotato/distinfo -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/files/couchpotato.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/couchpotato/files/couchpotato.in -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/couchpotato/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/couchpotato/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/couchpotato/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/couchpotato/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/headphones/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/headphones/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/headphones/Makefile -------------------------------------------------------------------------------- /ports/multimedia/headphones/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/headphones/distinfo -------------------------------------------------------------------------------- /ports/multimedia/headphones/files/headphones.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/headphones/files/headphones.in -------------------------------------------------------------------------------- /ports/multimedia/headphones/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/headphones/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/headphones/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/headphones/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/headphones/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/headphones/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/htpc-manager/Makefile -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/htpc-manager/distinfo -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/files/htpc-manager.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/htpc-manager/files/htpc-manager.in -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/htpc-manager/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/htpc-manager/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/htpc-manager/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/htpc-manager/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/maraschino/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/maraschino/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/maraschino/Makefile -------------------------------------------------------------------------------- /ports/multimedia/maraschino/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/maraschino/distinfo -------------------------------------------------------------------------------- /ports/multimedia/maraschino/files/maraschino.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/maraschino/files/maraschino.in -------------------------------------------------------------------------------- /ports/multimedia/maraschino/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/maraschino/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/maraschino/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/maraschino/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/maraschino/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/maraschino/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickbeard/Makefile -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickbeard/distinfo -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickbeard/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/files/sickbeard.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickbeard/files/sickbeard.in -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickbeard/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/sickbeard/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickbeard/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/sickrage/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/sickrage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickrage/Makefile -------------------------------------------------------------------------------- /ports/multimedia/sickrage/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickrage/distinfo -------------------------------------------------------------------------------- /ports/multimedia/sickrage/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickrage/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/sickrage/files/sickrage.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickrage/files/sickrage.in -------------------------------------------------------------------------------- /ports/multimedia/sickrage/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickrage/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/sickrage/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/sickrage/pkg-plist -------------------------------------------------------------------------------- /ports/multimedia/xdm/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/multimedia/xdm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/xdm/Makefile -------------------------------------------------------------------------------- /ports/multimedia/xdm/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/xdm/distinfo -------------------------------------------------------------------------------- /ports/multimedia/xdm/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/xdm/files/pkg-message.in -------------------------------------------------------------------------------- /ports/multimedia/xdm/files/xdm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/xdm/files/xdm.in -------------------------------------------------------------------------------- /ports/multimedia/xdm/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/xdm/pkg-descr -------------------------------------------------------------------------------- /ports/multimedia/xdm/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/multimedia/xdm/pkg-plist -------------------------------------------------------------------------------- /ports/news/nzbhydra/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/news/nzbhydra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/news/nzbhydra/Makefile -------------------------------------------------------------------------------- /ports/news/nzbhydra/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/news/nzbhydra/distinfo -------------------------------------------------------------------------------- /ports/news/nzbhydra/files/nzbhydra.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/news/nzbhydra/files/nzbhydra.in -------------------------------------------------------------------------------- /ports/news/nzbhydra/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/news/nzbhydra/files/pkg-message.in -------------------------------------------------------------------------------- /ports/news/nzbhydra/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/news/nzbhydra/pkg-descr -------------------------------------------------------------------------------- /ports/news/nzbhydra/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/news/nzbhydra/pkg-plist -------------------------------------------------------------------------------- /ports/www/pyload/.gitignore: -------------------------------------------------------------------------------- 1 | work 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /ports/www/pyload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/Makefile -------------------------------------------------------------------------------- /ports/www/pyload/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/distinfo -------------------------------------------------------------------------------- /ports/www/pyload/files/patch-module-utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/files/patch-module-utils.py -------------------------------------------------------------------------------- /ports/www/pyload/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/files/pkg-message.in -------------------------------------------------------------------------------- /ports/www/pyload/files/pyload.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/files/pyload.in -------------------------------------------------------------------------------- /ports/www/pyload/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/pkg-descr -------------------------------------------------------------------------------- /ports/www/pyload/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/ports/www/pyload/pkg-plist -------------------------------------------------------------------------------- /src/libsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/libsh/Makefile -------------------------------------------------------------------------------- /src/libsh/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/libsh/functions.sh -------------------------------------------------------------------------------- /src/pbi-manager/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/INSTALL -------------------------------------------------------------------------------- /src/pbi-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/Makefile -------------------------------------------------------------------------------- /src/pbi-manager/etc/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/etc/pbi.conf -------------------------------------------------------------------------------- /src/pbi-manager/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/icons/default.png -------------------------------------------------------------------------------- /src/pbi-manager/icons/patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/icons/patch.png -------------------------------------------------------------------------------- /src/pbi-manager/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/install.sh -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_add.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_browser.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_browser.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_create.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_create.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_delete.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_delete.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_icon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_icon.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_indextool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_indextool.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_info.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_info.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_listrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_listrepo.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_metatool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_metatool.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_patch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_patch.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_update.1 -------------------------------------------------------------------------------- /src/pbi-manager/man1/pbi_update_hashdir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man1/pbi_update_hashdir.1 -------------------------------------------------------------------------------- /src/pbi-manager/man5/pbi.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man5/pbi.conf.5 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbi_addrepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbi_addrepo.8 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbi_autobuild.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbi_autobuild.8 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbi_deleterepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbi_deleterepo.8 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbi_makepatch.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbi_makepatch.8 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbi_makeport.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbi_makeport.8 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbi_makerepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbi_makerepo.8 -------------------------------------------------------------------------------- /src/pbi-manager/man8/pbid.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/man8/pbid.8 -------------------------------------------------------------------------------- /src/pbi-manager/mkport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/mkport.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/convertoldmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/convertoldmod.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/LICENSE -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/external-links -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/pbi.conf -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/resources/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/resources/firefox.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/resources/gui_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/resources/gui_banner.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/resources/gui_sidebanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/resources/gui_sidebanner.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/scripts/post-install.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/scripts/post-portmake.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/scripts/pre-install.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/scripts/pre-remove.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/xdg-desktop/firefox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/xdg-desktop/firefox.desktop -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/firefox/xdg-menu/firefox3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/firefox/xdg-menu/firefox3.desktop -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/LICENSE -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/external-links -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/pbi.conf -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/resources/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/resources/gimp.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/resources/gui_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/resources/gui_banner.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/resources/gui_sidebanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/resources/gui_sidebanner.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/scripts/post-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/scripts/post-portmake.sh -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/scripts/pre-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/scripts/pre-portmake.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/scripts/pre-remove.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/xdg-desktop/gimp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/xdg-desktop/gimp.desktop -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/xdg-menu/gimp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/xdg-menu/gimp.desktop -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/xdg-mime/gimp-xdg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/xdg-mime/gimp-xdg.png -------------------------------------------------------------------------------- /src/pbi-manager/module-examples/gimp/xdg-mime/gimp-xdg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/module-examples/gimp/xdg-mime/gimp-xdg.xml -------------------------------------------------------------------------------- /src/pbi-manager/pbi-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/pbi-manager -------------------------------------------------------------------------------- /src/pbi-manager/port-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/port-files/Makefile -------------------------------------------------------------------------------- /src/pbi-manager/port-files/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/port-files/files/pkg-message.in -------------------------------------------------------------------------------- /src/pbi-manager/port-files/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/port-files/pkg-descr -------------------------------------------------------------------------------- /src/pbi-manager/port-files/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/port-files/pkg-plist -------------------------------------------------------------------------------- /src/pbi-manager/rc.d/ldpbiconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/rc.d/ldpbiconfig -------------------------------------------------------------------------------- /src/pbi-manager/rc.d/pbid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/rc.d/pbid -------------------------------------------------------------------------------- /src/pbi-manager/repo/pcbsd.rpo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/repo/pcbsd.rpo -------------------------------------------------------------------------------- /src/pbi-manager/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/wrapper/Makefile -------------------------------------------------------------------------------- /src/pbi-manager/wrapper/example.pbiwrapper.ldhints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/wrapper/example.pbiwrapper.ldhints -------------------------------------------------------------------------------- /src/pbi-manager/wrapper/example.pbiwrapper.pbiopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/wrapper/example.pbiwrapper.pbiopt -------------------------------------------------------------------------------- /src/pbi-manager/wrapper/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager/wrapper/main.c -------------------------------------------------------------------------------- /src/pbi-manager10/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/INSTALL -------------------------------------------------------------------------------- /src/pbi-manager10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/Makefile -------------------------------------------------------------------------------- /src/pbi-manager10/etc/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/etc/pbi.conf -------------------------------------------------------------------------------- /src/pbi-manager10/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/icons/default.png -------------------------------------------------------------------------------- /src/pbi-manager10/icons/patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/icons/patch.png -------------------------------------------------------------------------------- /src/pbi-manager10/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/install.sh -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_add.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_add.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_browser.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_browser.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_create.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_create.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_delete.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_delete.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_icon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_icon.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_indextool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_indextool.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_info.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_info.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_listrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_listrepo.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_metatool.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_metatool.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_patch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_patch.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_update.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_update.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man1/pbi_update_hashdir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man1/pbi_update_hashdir.1 -------------------------------------------------------------------------------- /src/pbi-manager10/man5/pbi.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man5/pbi.conf.5 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbi_addrepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbi_addrepo.8 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbi_autobuild.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbi_autobuild.8 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbi_deleterepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbi_deleterepo.8 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbi_makepatch.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbi_makepatch.8 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbi_makeport.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbi_makeport.8 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbi_makerepo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbi_makerepo.8 -------------------------------------------------------------------------------- /src/pbi-manager10/man8/pbid.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/man8/pbid.8 -------------------------------------------------------------------------------- /src/pbi-manager10/mkport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/mkport.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/convertoldmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/convertoldmod.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/LICENSE -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/external-links -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/pbi.conf -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/resources/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/resources/firefox.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/resources/gui_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/resources/gui_banner.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/resources/gui_sidebanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/resources/gui_sidebanner.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/scripts/post-install.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/scripts/post-portmake.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/scripts/pre-install.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/scripts/pre-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/scripts/pre-remove.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/firefox/xdg-menu/firefox3.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/firefox/xdg-menu/firefox3.desktop -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/LICENSE -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/external-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/external-links -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/pbi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/pbi.conf -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/resources/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/resources/gimp.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/resources/gui_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/resources/gui_banner.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/resources/gui_sidebanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/resources/gui_sidebanner.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/scripts/post-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/scripts/post-portmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/scripts/post-portmake.sh -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/scripts/pre-install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/scripts/pre-portmake.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/scripts/pre-remove.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/xdg-desktop/gimp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/xdg-desktop/gimp.desktop -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/xdg-menu/gimp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/xdg-menu/gimp.desktop -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/xdg-mime/gimp-xdg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/xdg-mime/gimp-xdg.png -------------------------------------------------------------------------------- /src/pbi-manager10/module-examples/gimp/xdg-mime/gimp-xdg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/module-examples/gimp/xdg-mime/gimp-xdg.xml -------------------------------------------------------------------------------- /src/pbi-manager10/pbi-manager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/pbi-manager -------------------------------------------------------------------------------- /src/pbi-manager10/port-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/port-files/Makefile -------------------------------------------------------------------------------- /src/pbi-manager10/port-files/files/pkg-message.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/port-files/files/pkg-message.in -------------------------------------------------------------------------------- /src/pbi-manager10/port-files/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/port-files/pkg-descr -------------------------------------------------------------------------------- /src/pbi-manager10/port-files/pkg-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/port-files/pkg-plist -------------------------------------------------------------------------------- /src/pbi-manager10/rc.d/ldpbiconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/rc.d/ldpbiconfig -------------------------------------------------------------------------------- /src/pbi-manager10/rc.d/pbid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/rc.d/pbid -------------------------------------------------------------------------------- /src/pbi-manager10/repo/pcbsd.rpo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/repo/pcbsd.rpo -------------------------------------------------------------------------------- /src/pbi-manager10/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/wrapper/Makefile -------------------------------------------------------------------------------- /src/pbi-manager10/wrapper/example.pbiwrapper.ldhints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/wrapper/example.pbiwrapper.ldhints -------------------------------------------------------------------------------- /src/pbi-manager10/wrapper/example.pbiwrapper.pbiopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/wrapper/example.pbiwrapper.pbiopt -------------------------------------------------------------------------------- /src/pbi-manager10/wrapper/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-manager10/wrapper/main.c -------------------------------------------------------------------------------- /src/pbi-wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-wrapper/Makefile -------------------------------------------------------------------------------- /src/pbi-wrapper/pbiwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh4trunks/freenas-plugins/HEAD/src/pbi-wrapper/pbiwrapper.c --------------------------------------------------------------------------------