mirror of
https://github.com/Relintai/pi_player.git
synced 2024-11-12 08:45:35 +01:00
14 lines
210 B
Bash
Executable File
14 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
if [ ! -f "/etc/systemd/system/fbcp.service" ]; then
|
|
sudo cp ./files/fbcp.service /etc/systemd/system/fbcp.service
|
|
|
|
sudo systemctl enable fbcp
|
|
fi
|
|
|
|
sudo killall fbcp
|
|
sudo systemctl start fbcp
|
|
|
|
|