Skip to content

Diskplayer.contents not moving to floppy disk #1

@drezelrs

Description

@drezelrs

When accessing the virtual host at http://RASPPI IP/diskplayer/ I try to write a spotify album URL to the floppy and it properly writes the diskplayer.contents file into tmp, but it doesn't properly move the file to the floppy disk.

My floppy drive mounts to /media/pi/Floppy Disk/
not sure if there's a way to change it to /media/floppy/

Here is my copyfiles.sh code:

#!/bin/sh
# /etc/init.d/copyfiles.sh
### BEGIN INIT INFO
# Provides:          copyfiles.sh
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Copies file to the floppy
# Description:       Copies specific file from tmp folder to the mounted floppy once created
### END INIT INFO

inotifywait -m /home/pi/diskplayer/tmp -e create @__init__.py |
    while read path action file; do
        if [ "$file" = "diskplayer.contents" ]; then
            sudo chown root:root "${path}/${file}"
            sudo chmod 777 "${path}/${file}"
            sudo mv "${path}/${file}" /media/pi/Floppy Disk/diskplayer.contents
        fi
    done

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions