9 lines
263 B
Bash
Executable File
9 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
INSTALL_DIR="$(pwd)"
|
|
chmod +x "$INSTALL_DIR/EpsonPrintService"
|
|
mkdir -p /var/lib/epson-print-service
|
|
install -m 644 epson.service /etc/systemd/system/epson.service
|
|
systemctl daemon-reload
|
|
systemctl enable --now epson.service
|