gitextract_oklxbxnr/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug-report.yml │ └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY ├── ansible/ │ ├── ansible.cfg │ ├── hosts.yml │ ├── install_3ds_qr_codes.yml │ ├── install_adtpro.yml │ ├── install_affstools.yml │ ├── install_amitools.yml │ ├── install_analoguepocket_cifs.yml │ ├── install_apfs-fuse.yml │ ├── install_aria2.yml │ ├── install_assembly64.yml │ ├── install_atarist-sidecart.yml │ ├── install_batocera_cifs.yml │ ├── install_cockpit-retronas.yml │ ├── install_cockpit.yml │ ├── install_cue2pops.yml │ ├── install_curlftpfs.yml │ ├── install_deluge.yml │ ├── install_dhcpcd.yml │ ├── install_disable-laptop-lid.yml │ ├── install_disc-image-creator.yml │ ├── install_dnsmasq-retro.yml │ ├── install_dnsmasq.yml │ ├── install_doc.yml │ ├── install_dreampi.yml │ ├── install_dvdauth.yml │ ├── install_eccedc.yml │ ├── install_emudeck_cifs.yml │ ├── install_emuelec_cifs.yml │ ├── install_etherdfs.yml │ ├── install_ethflopd.yml │ ├── install_extract-xiso.yml │ ├── install_extradirs.yml │ ├── install_far2l.yml │ ├── install_fenrir-ode-webserver.yml │ ├── install_filesystems.yml │ ├── install_firewalld-zones.yml │ ├── install_firewalld.yml │ ├── install_flippydrive.yml │ ├── install_freestation.yml │ ├── install_fsp.yml │ ├── install_gogrepo.yml │ ├── install_hb-store-cdn.yml │ ├── install_hdldump.yml │ ├── install_hdparm.yml │ ├── install_hfsutils.yml │ ├── install_hostapd.yml │ ├── install_kermit.yml │ ├── install_lighttpd.yml │ ├── install_linux-dexdrive.yml │ ├── install_linux-gadgets.yml │ ├── install_litch.yml │ ├── install_lynx.yml │ ├── install_macproxy_classic.yml │ ├── install_mc.yml │ ├── install_megatools.yml │ ├── install_minicom.yml │ ├── install_mister-organize.yml │ ├── install_mister_cifs.yml │ ├── install_mtcp-netdrive.yml │ ├── install_mysticbbs.yml │ ├── install_nabu.yml │ ├── install_nbd-client.yml │ ├── install_netatalk2.yml │ ├── install_netatalk2x.yml │ ├── install_netatalk3.yml │ ├── install_netatalk3_source.yml │ ├── install_netatalk4.yml │ ├── install_netlink.yml │ ├── install_netmount.yml │ ├── install_network-presets-ethernet-dhcp.yml │ ├── install_network-presets-standalone.yml │ ├── install_network-presets-zoned.yml │ ├── install_networkmanager.yml │ ├── install_nfs.yml │ ├── install_nginx.yml │ ├── install_ntp.yml │ ├── install_open-iscsi.yml │ ├── install_openssh.yml │ ├── install_pandoc.yml │ ├── install_pfsshell.yml │ ├── install_pi1541.yml │ ├── install_piscsi.yml │ ├── install_proftpd.yml │ ├── install_ps2_openps2loader.yml │ ├── install_ps2_udpbd.yml │ ├── install_ps3netsrv.yml │ ├── install_pygopherd.yml │ ├── install_rclone.yml │ ├── install_recalbox_cifs.yml │ ├── install_redumper.yml │ ├── install_retroaimserver.yml │ ├── install_retroarch_cifs.yml │ ├── install_retrodeck_cifs.yml │ ├── install_romdir.yml │ ├── install_romimport.yml │ ├── install_romm_cifs.yml │ ├── install_sabretools.yml │ ├── install_samba.yml │ ├── install_seaweedfs.yml │ ├── install_sit.yml │ ├── install_smbmounter.yml │ ├── install_sslcert.yml │ ├── install_syncthing.yml │ ├── install_tcpser.yml │ ├── install_telnet.yml │ ├── install_tftpd-hpa.yml │ ├── install_tnfs.yml │ ├── install_troubleshooting.yml │ ├── install_ucon64.yml │ ├── install_waybackproxy.yml │ ├── install_webone.yml │ ├── install_wrp.yml │ ├── install_xbox.yml │ ├── install_xbox360.yml │ ├── install_xbox360_netiso.yml │ ├── install_xboxmanager.yml │ ├── install_xlink-kai.yml │ ├── install_ytree.yml │ ├── install_zterm.yml │ ├── migrate_mister_cifs_issue21.yml │ ├── retronas_create_dirs.yml │ ├── retronas_dependencies.yml │ ├── retronas_system_config.yml │ ├── retronas_systems.yml │ ├── retronas_update_user.yml │ ├── retronas_vars.yml.default │ ├── roles/ │ │ ├── retronas.role.apt-backports/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.cache/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.cockpit/ │ │ │ ├── handlers/ │ │ │ │ └── main.yaml │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.cockpit-packages/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ ├── templates/ │ │ │ │ └── install_cockpit-packages/ │ │ │ │ └── cockpit-packages.sh.j2 │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.createdirs/ │ │ │ └── tasks/ │ │ │ └── main.yaml │ │ ├── retronas.role.curlftpfs/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ ├── templates/ │ │ │ │ └── install_curlftpfs.sh.j2 │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.dotnetcore3/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.dotnetcore6/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.dotnetcore8/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.extradirs/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.filesystems/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.firewalld.port/ │ │ │ └── tasks/ │ │ │ └── main.yaml │ │ ├── retronas.role.htpasswd/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yml │ │ ├── retronas.role.nfs/ │ │ │ ├── handlers/ │ │ │ │ └── main.yaml │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.nginx/ │ │ │ ├── handlers/ │ │ │ │ └── main.yaml │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ ├── templates/ │ │ │ │ └── install_nginx/ │ │ │ │ ├── conf/ │ │ │ │ │ ├── includes/ │ │ │ │ │ │ ├── autoindex.conf │ │ │ │ │ │ ├── listen-80.conf │ │ │ │ │ │ └── ssl.conf │ │ │ │ │ └── sites-available/ │ │ │ │ │ ├── 10-retronas.conf │ │ │ │ │ └── 99-retronas-files.conf │ │ │ │ └── www/ │ │ │ │ └── index.html │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.package.latest/ │ │ │ └── tasks/ │ │ │ └── main.yaml │ │ ├── retronas.role.paths/ │ │ │ └── tasks/ │ │ │ └── main.yaml │ │ ├── retronas.role.romdir/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.samba/ │ │ │ ├── handlers/ │ │ │ │ └── main.yaml │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ ├── templates/ │ │ │ │ └── retronas.conf.j2 │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.samba.system/ │ │ │ ├── tasks/ │ │ │ │ ├── link.yml │ │ │ │ ├── main.yaml │ │ │ │ └── nolink.yml │ │ │ └── templates/ │ │ │ └── retronas_system.conf.j2 │ │ ├── retronas.role.sslcert/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.system-config/ │ │ │ ├── tasks/ │ │ │ │ └── main.yaml │ │ │ └── vars/ │ │ │ └── main.yaml │ │ ├── retronas.role.templates/ │ │ │ └── tasks/ │ │ │ └── main.yaml │ │ ├── retronas.role.update-user/ │ │ │ └── tasks/ │ │ │ └── main.yaml │ │ └── retronas.role.x11vnc/ │ │ ├── tasks/ │ │ │ └── main.yaml │ │ ├── templates/ │ │ │ └── install_x11vnc/ │ │ │ └── x11vnc_wrapper.sh.j2 │ │ └── vars/ │ │ └── main.yaml │ └── templates/ │ ├── install_3ds_qr_codes/ │ │ ├── 3ds_qr.sh.j2 │ │ └── retronas_3ds_qr.cron.j2 │ ├── install_adtpro/ │ │ ├── ADTPro.properties.j2 │ │ ├── adtpro.service.j2 │ │ ├── adtpro_retronas.sh.j2 │ │ └── install_adtpro.sh.j2 │ ├── install_affstools/ │ │ └── install_affstools.sh.j2 │ ├── install_amitools/ │ │ └── install_amitools.sh.j2 │ ├── install_apfs-fuse/ │ │ └── install_apfs-fuse.sh.j2 │ ├── install_assembly64/ │ │ ├── assembly64.service.j2 │ │ ├── assembly64_retronas.sh.j2 │ │ └── install_assembly64.sh.j2 │ ├── install_atarist-sidecart/ │ │ ├── 99-retronas-sidecart.conf.j2 │ │ ├── atarist-sidecart-generate-roms.sh.j2 │ │ ├── atarist-sidecart-mirrordb.sh.j2 │ │ ├── atarist-sidecart-updatedb.sh.j2 │ │ ├── index.html.j2 │ │ └── retronas_atarist.conf.j2 │ ├── install_cockpit-retronas/ │ │ └── install_cockpit-retronas.sh.j2 │ ├── install_cue2pops/ │ │ └── install_cue2pops.sh.j2 │ ├── install_deluge/ │ │ ├── auth.j2 │ │ ├── autoadd.conf.j2 │ │ ├── core.conf.j2 │ │ ├── deluge-web.service.j2 │ │ ├── deluged.j2 │ │ ├── deluged.service.j2 │ │ └── upgrade_deluge.sh.j2 │ ├── install_disable-laptop-lid/ │ │ └── retronas.conf.j2 │ ├── install_disc-image-creator/ │ │ └── install_disc-image-creator.sh.j2 │ ├── install_dnsmasq-retro/ │ │ ├── dnsmasq-retro.service.j2 │ │ └── retro/ │ │ ├── dhcp-retro-ethernet.conf.j2 │ │ ├── dhcp-retro-wifi.conf.j2 │ │ ├── dhcp.conf.j2 │ │ ├── dns.conf.j2 │ │ ├── dnsmasq.conf.j2 │ │ ├── interfaces.conf.j2 │ │ └── ipv6.conf.j2 │ ├── install_dreampi/ │ │ ├── dreampi.conf.j2 │ │ └── install_dreampi.sh.j2 │ ├── install_dvdauth/ │ │ └── install_dvdauth.sh.j2 │ ├── install_eccedc/ │ │ └── install_eccedc.sh.j2 │ ├── install_etherdfs/ │ │ ├── etherdfs.service.j2 │ │ ├── install_etherdfs.sh.j2 │ │ └── retronas_dos.conf.j2 │ ├── install_ethflopd/ │ │ ├── ethflopd.service.j2 │ │ └── install_ethflopd.sh.j2 │ ├── install_extract-xiso/ │ │ └── install_extract-xiso.sh.j2 │ ├── install_far2l/ │ │ └── install_far2l.sh.j2 │ ├── install_fenrir-ode-webserver/ │ │ ├── fenrir-ode-webserver.service.j2 │ │ └── install_fenrir-ode-webserver.sh.j2 │ ├── install_firewalld/ │ │ └── workarounds/ │ │ ├── clear-python-bytecode.j2 │ │ └── override.conf.j2 │ ├── install_firewalld-zones/ │ │ ├── policies/ │ │ │ └── retro_to_modern.xml.j2 │ │ ├── services/ │ │ │ ├── ps3netsrv.xml.j2 │ │ │ └── samba-modern.xml.j2 │ │ └── zones/ │ │ ├── modern.xml.j2 │ │ └── retro.xml.j2 │ ├── install_flippydrive/ │ │ ├── flippydrive.service.j2 │ │ ├── flippydrive.sh.j2 │ │ └── install_flippydrive.sh.j2 │ ├── install_freestation/ │ │ ├── retronas_freestation_cifs.conf.j2 │ │ └── retronas_freestation_nfs.conf.j2 │ ├── install_fsp/ │ │ ├── fspd.conf.j2 │ │ ├── fspd.service.j2 │ │ └── install_fsp.sh.j2 │ ├── install_gogrepo/ │ │ ├── gogrepo-wrapper.sh.j2 │ │ ├── gogrepo_download.sh.j2 │ │ ├── gogrepo_import-cookies.sh.j2 │ │ ├── gogrepo_login.sh.j2 │ │ └── gogrepo_update.sh.j2 │ ├── install_hb-store-cdn/ │ │ ├── config.ini.j2 │ │ ├── hb-store-cdn-check.sh.j2 │ │ ├── hb-store-cdn.cron.j2 │ │ ├── hb-store-cdn.service.j2 │ │ └── install_hb-store-cdn.sh.j2 │ ├── install_hdldump/ │ │ └── install_hdldump.sh.j2 │ ├── install_hdparm/ │ │ ├── hdparm-manager.sh.j2 │ │ ├── hdparm.service.j2 │ │ ├── hdparm.sh.j2 │ │ └── hdparm.timer.j2 │ ├── install_hfsutils/ │ │ └── install_hfsutils.sh.j2 │ ├── install_hostapd/ │ │ ├── hostapd-dnsmasq.conf.j2 │ │ ├── hostapd-retronas.conf.j2 │ │ └── hostapd-retronas.service.j2 │ ├── install_kermit/ │ │ ├── iksd.socket.j2 │ │ └── iksd@.service.j2 │ ├── install_lighttpd/ │ │ └── 99-retronas.conf.j2 │ ├── install_linux-dexdrive/ │ │ ├── dexdrive_dumper.sh.j2 │ │ ├── install_linux-dexdrive.sh.j2 │ │ ├── linux-dexdrive.service.j2 │ │ └── makefile.patch.j2 │ ├── install_linux-gadgets/ │ │ └── gadget-mass-storage-manage.sh.j2 │ ├── install_litch/ │ │ ├── litch_claim.sh.j2 │ │ ├── litch_download.sh.j2 │ │ ├── litch_download_clean.sh.j2 │ │ └── litch_login.sh.j2 │ ├── install_macproxy_classic/ │ │ └── macproxy.service.j2 │ ├── install_megatools/ │ │ └── install_megatools.sh.j2 │ ├── install_minicom/ │ │ ├── minicom.sh.j2 │ │ └── minirc.dfl.j2 │ ├── install_mister-organize/ │ │ ├── install_mister-organize.sh.j2 │ │ └── mister-organize.sh.j2 │ ├── install_mister_cifs/ │ │ ├── retronas-mister-dirs.service.j2 │ │ └── retronas-mister-dirs.timer.j2 │ ├── install_mtcp-netdrive/ │ │ ├── install_mtcp-netdrive.sh.j2 │ │ ├── mtcp-netdrive.service.j2 │ │ ├── mtcp-netdrive.sh.j2 │ │ └── mtcp-netdrive.xml.j2 │ ├── install_mysticbbs/ │ │ ├── create_filebone_na.py.j2 │ │ ├── install_mysticbbs.sh.j2 │ │ ├── mysticbbs-mis.service.j2 │ │ ├── mysticbbs.sh.j2 │ │ ├── mysticbbs.xml.j2 │ │ ├── retronas_create_fileareas.ini.j2 │ │ └── retronas_massupload.ini.j2 │ ├── install_nabu/ │ │ ├── install_nabu.sh.j2 │ │ └── nabu.sh.j2 │ ├── install_nbd-client/ │ │ └── nbd.conf.j2 │ ├── install_netatalk2/ │ │ ├── AppleVolumes.default.j2 │ │ ├── afpd.conf.j2 │ │ └── default.j2 │ ├── install_netatalk2x/ │ │ ├── AppleVolumes.default.j2 │ │ ├── afpd.conf.j2 │ │ ├── afpexpect.sh.j2 │ │ ├── atalkd.conf.j2 │ │ ├── default.j2 │ │ └── install_netatalk2x.sh.j2 │ ├── install_netatalk3/ │ │ ├── install_netatalk3.sh.j2 │ │ ├── netatalk.service.j2 │ │ └── retronas.conf.j2 │ ├── install_netatalk4/ │ │ ├── atalkd.service.j2 │ │ ├── install_netatalk4.sh.j2 │ │ ├── netatalk.service.j2 │ │ └── retronas.conf.j2 │ ├── install_netlink/ │ │ ├── install_netlink.sh.j2 │ │ ├── netlink.conf.j2 │ │ ├── netlink.patch.j2 │ │ └── netlink.service.j2 │ ├── install_netmount/ │ │ ├── install_netmount.sh.j2 │ │ ├── netmount-confman.py.j2 │ │ ├── netmount-confman.sh.j2 │ │ └── retronas.yaml.j2 │ ├── install_network-presets-standalone/ │ │ └── dhcpcd.conf.j2 │ ├── install_network-presets-zoned/ │ │ └── dhcpcd.conf.j2 │ ├── install_nfs/ │ │ ├── exports.j2 │ │ └── nfs-kernel-server.j2 │ ├── install_open-iscsi/ │ │ └── iscsi-manager-target-login.sh.j2 │ ├── install_pfsshell/ │ │ └── install_pfsshell.sh.j2 │ ├── install_pi1541/ │ │ └── pi1541.sh.j2 │ ├── install_piscsi/ │ │ ├── install_piscsi.sh.j2 │ │ ├── install_piscsi_standard.sh.j2 │ │ ├── piscsi.service.j2 │ │ └── piscsi_retronas_patch.diff.j2 │ ├── install_proftpd/ │ │ ├── ftp.service.j2 │ │ └── retronas.conf.j2 │ ├── install_ps2_openps2loader/ │ │ └── retronas_ps2.conf.j2 │ ├── install_ps2_udpbd/ │ │ ├── install_ps2_udpbd.sh.j2 │ │ ├── ps2_udpbd.service.j2 │ │ └── udpbd_manager.sh.j2 │ ├── install_ps3netsrv/ │ │ ├── install_ps3netsrv.sh.j2 │ │ ├── ps3netsrv-perms.service.j2 │ │ ├── ps3netsrv-perms.timer.j2 │ │ └── ps3netsrv.service.j2 │ ├── install_pygopherd/ │ │ ├── install_pygopherd.sh.j2 │ │ ├── pygopherd.conf.j2 │ │ └── pygopherd.service.j2 │ ├── install_rclone/ │ │ └── rclone-webui.service.j2 │ ├── install_redumper/ │ │ └── install_redumper.sh.j2 │ ├── install_retroaimserver/ │ │ ├── install_retroaimserver.sh.j2 │ │ ├── retro-aim-server.service.j2 │ │ ├── retroaimserver.xml.j2 │ │ └── retroainserver.xml.j2 │ ├── install_romimport/ │ │ └── romimport.sh.j2 │ ├── install_romm_cifs/ │ │ ├── retronas-romm-dirs.service.j2 │ │ ├── retronas-romm-dirs.sh.j2 │ │ └── retronas-romm-dirs.timer.j2 │ ├── install_sabretools/ │ │ └── install_sabretools.sh.j2 │ ├── install_seaweedfs/ │ │ ├── install_seaweedfs.sh.j2 │ │ ├── seaweedfs-credentials.sh.j2 │ │ ├── seaweedfs-retronas.service.j2 │ │ ├── seaweedfs.xml.j2 │ │ └── weed-retronas-s3.json.j2 │ ├── install_sit/ │ │ └── install_sit.sh.j2 │ ├── install_smbmounter/ │ │ └── retronas_smbmounter.conf.j2 │ ├── install_tcpser/ │ │ ├── install_tcpser.sh.j2 │ │ └── tcpser@.service.j2 │ ├── install_telnet/ │ │ └── telnet.j2 │ ├── install_tftpd-hpa/ │ │ └── tftpd-hpa.j2 │ ├── install_tnfs/ │ │ ├── install_tnfs.sh.j2 │ │ └── tnfsd.service.j2 │ ├── install_ucon64/ │ │ └── install_ucon64.sh.j2 │ ├── install_waybackproxy/ │ │ ├── config.json.j2 │ │ ├── install_waybackproxy.sh.j2 │ │ └── waybackproxy.service.j2 │ ├── install_webone/ │ │ ├── install_webone.sh.j2 │ │ └── webone.service.j2 │ ├── install_wrp/ │ │ ├── install_wrp.sh.j2 │ │ └── wrp.service.j2 │ ├── install_x11vnc/ │ │ └── x11vnc_wrapper.sh.j2 │ ├── install_xbox/ │ │ └── retronas_xbox.conf.j2 │ ├── install_xbox360/ │ │ └── retronas_xbox360.conf.j2 │ ├── install_xbox360_netiso/ │ │ ├── dummy.iso.j2 │ │ ├── install_xbox360_netiso.sh.j2 │ │ └── xbox360_netiso.service.j2 │ ├── install_xboxmanager/ │ │ └── xboxmanager.cfg.j2 │ ├── install_xlink-kai/ │ │ └── xlink-kai.service.j2 │ ├── install_ytree/ │ │ └── install_ytree.sh.j2 │ └── install_zterm/ │ ├── install_zterm.sh.j2 │ └── zterm.service.j2 ├── config/ │ ├── menu/ │ │ ├── 3ds_qr.json │ │ ├── _template.json │ │ ├── adtpro.json │ │ ├── assembly64.json │ │ ├── atarist-sidecart.json │ │ ├── cockpit.json │ │ ├── config.json │ │ ├── deluge.json │ │ ├── dexdrive.json │ │ ├── doc.json │ │ ├── dreampi.json │ │ ├── etherdfs.json │ │ ├── ethflopd.json │ │ ├── experimental.json │ │ ├── fenrirodewebserver.json │ │ ├── flippydrive.json │ │ ├── fsp.json │ │ ├── gogrepo.json │ │ ├── hbstorecdn.json │ │ ├── hdparm.json │ │ ├── install.json │ │ ├── lighttpd.json │ │ ├── linux-gadgets.json │ │ ├── litch.json │ │ ├── lynx.json │ │ ├── macproxy_classic.json │ │ ├── main.json │ │ ├── minicom.json │ │ ├── mister-organize.json │ │ ├── mister_cifs.json │ │ ├── mtcp-netdrive.json │ │ ├── mysticbbs.json │ │ ├── nabu.json │ │ ├── netatalk-legacy.json │ │ ├── netatalk.json │ │ ├── netlink.json │ │ ├── netmount.json │ │ ├── network-manual.json │ │ ├── network-presets.json │ │ ├── network-setup-modern.json │ │ ├── network-setup-retro.json │ │ ├── network-setup-wifiap.json │ │ ├── network-setup.json │ │ ├── network.json │ │ ├── nginx.json │ │ ├── ntp.json │ │ ├── open-iscsi.json │ │ ├── openssh.json │ │ ├── pi1541.json │ │ ├── piscsi.json │ │ ├── profiles.json │ │ ├── proftpd.json │ │ ├── ps2_udpbd.json │ │ ├── ps3netsrv.json │ │ ├── rclone.json │ │ ├── retroaimserver.json │ │ ├── romimport.json │ │ ├── romimportsystem.json │ │ ├── romm_cifs.json │ │ ├── samba.json │ │ ├── seaweedfs.json │ │ ├── services.json │ │ ├── sslcert.json │ │ ├── syncthing.json │ │ ├── tcpser.json │ │ ├── telnet.json │ │ ├── tftpd-hpa.json │ │ ├── tnfs.json │ │ ├── tools.json │ │ ├── update.json │ │ ├── webone.json │ │ ├── wrp.json │ │ ├── xbox360_netiso.json │ │ ├── xlinkkai.json │ │ └── zterm.json │ └── retronas.cfg ├── dialog/ │ ├── adtpro_ethernet_edit.sh │ ├── adtpro_localhost_edit.sh │ ├── adtpro_serial_edit.sh │ ├── d_input.sh │ ├── d_menu.sh │ ├── d_yn.sh │ ├── dexdrive_memcards.sh │ ├── dexdrive_serial_edit.sh │ ├── disclaimer.sh │ ├── gogrepo.sh │ ├── profiles.sh │ ├── retronas_fixperms.sh │ ├── retronas_password.sh │ ├── romimportsystem.sh │ ├── tcpser_edit.sh │ ├── tcpser_status.sh │ ├── wifi_password.sh │ └── zterm_edit.sh ├── dist/ │ ├── install_preseed.sh │ └── retronas ├── install_retronas.sh ├── lib/ │ ├── ansible_runner.sh │ ├── common.sh │ ├── markup_runner.sh │ └── script_runner.sh ├── retronas.sh └── scripts/ ├── maint/ │ ├── git-changes-summary.sh │ ├── install-profile.py │ ├── migrate_romdirs.py │ ├── retronas-systems-manager.py │ ├── sort_menu_json.py │ └── tests/ │ ├── lint-yaml.sh │ └── test-retronas-json.py ├── patch/ │ ├── cache-dir.sh │ ├── git-config.sh │ ├── install-jq.sh │ ├── new-startup-file.sh │ └── update-retronas_vars.sh └── static/ ├── check-samba-user.sh ├── clean-broken-symlinks.sh ├── get-drives.sh ├── get-interfaces.sh ├── git-switch-branch.sh ├── network-example-presets-standalone.sh ├── network-example-presets-zoned.sh ├── permissions.sh ├── run-local-module.sh ├── service-samba.sh ├── set-etherdfs-nic.sh ├── set-top-level-dir.sh ├── update-group.sh ├── update-passwd.sh ├── update-retronas.sh ├── update-system-history.sh ├── update-system.sh ├── update-username.sh ├── wifi-show-passwd.sh └── wifi-update-passwd.sh