18 lines
278 B
Bash
18 lines
278 B
Bash
#!/usr/bin/env bash
|
|
# Generate systemd service file
|
|
|
|
FILE=/etc/systemd/system/buttond.service
|
|
|
|
cat > $FILE << EOF
|
|
[Unit]
|
|
Description = buttonctl
|
|
|
|
[Service]
|
|
Type = simple
|
|
ExecStart = /usr/bin/python3 $PWD/button.py
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
Alias=buttond.service
|
|
EOF
|