├── .editorconfig ├── Dockerfile ├── LICENSE ├── README.md ├── config.json └── rootfs └── etc ├── avahi └── avahi-daemon.conf ├── cont-init.d ├── 20-dbus.sh └── 30-avahi.sh ├── fix-attrs.d ├── 20-dbus └── 30-avahi └── services.d ├── avahi ├── finish └── run ├── dbus ├── finish └── run └── shairport-sync ├── finish └── run /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/.editorconfig -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/config.json -------------------------------------------------------------------------------- /rootfs/etc/avahi/avahi-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/avahi/avahi-daemon.conf -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/20-dbus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/cont-init.d/20-dbus.sh -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/30-avahi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/cont-init.d/30-avahi.sh -------------------------------------------------------------------------------- /rootfs/etc/fix-attrs.d/20-dbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/fix-attrs.d/20-dbus -------------------------------------------------------------------------------- /rootfs/etc/fix-attrs.d/30-avahi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/fix-attrs.d/30-avahi -------------------------------------------------------------------------------- /rootfs/etc/services.d/avahi/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/services.d/avahi/finish -------------------------------------------------------------------------------- /rootfs/etc/services.d/avahi/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/services.d/avahi/run -------------------------------------------------------------------------------- /rootfs/etc/services.d/dbus/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/services.d/dbus/finish -------------------------------------------------------------------------------- /rootfs/etc/services.d/dbus/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/services.d/dbus/run -------------------------------------------------------------------------------- /rootfs/etc/services.d/shairport-sync/finish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/services.d/shairport-sync/finish -------------------------------------------------------------------------------- /rootfs/etc/services.d/shairport-sync/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3rm0n/addon-shairport-sync/HEAD/rootfs/etc/services.d/shairport-sync/run --------------------------------------------------------------------------------