Updated the Makefile to add commands for installing and uninstalling the software on Linux - this will make up for not having native packaging for the time being
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine 2022-09-02 13:43:32 -04:00
parent e915ebdf34
commit a8a46df87f
2 changed files with 31 additions and 0 deletions

View File

@ -11,6 +11,26 @@ test:
run: run:
go build -o ${BINARY_NAME} adept.go go build -o ${BINARY_NAME} adept.go
./${BINARY_NAME} ./${BINARY_NAME}
install:
useradd ${BINARY_NAME}
usermod -aG ${BINARY_NAME} ${BINARY_NAME}
cp ./${BINARY_NAME} /usr/bin/${BINARY_NAME}
chown root:root /usr/bin/${BINARY_NAME}
chmod 755 /usr/bin/${BINARY_NAME}
cp ./build/etc/systemd/system/${BINARY_NAME}.service /etc/systemd/system/${BINARY_NAME}.service
chown root:root /etc/systemd/system/${BINARY_NAME}.service
chmod 644 /etc/systemd/system/${BINARY_NAME}.service
mkdir /etc/${BINARY_NAME}
cp ./build/etc/${BINARY_NAME}/${BINARY_NAME}.toml /etc/${BINARY_NAME}/
chown -R ${BINARY_NAME}:${BINARY_NAME} /etc/${BINARY_NAME}
chmod 644 /etc/${BINARY_NAME}/${BINARY_NAME}.toml
uninstall:
userdel ${BINARY_NAME}
rm /usr/bin/${BINARY_NAME}
rm /etc/systemd/system/${BINARY_NAME}.service
rm -rf /etc/${BINARY_NAME}
clean: clean:
go clean go clean

View File

@ -0,0 +1,11 @@
[Unit]
Description=Adept video transcoder service
[Service]
User=adept
Group=adept
ExecStart=/usr/bin/adept
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target