소스 검색

Fixed spelling

release/3.x.x
Damian Wolgast 3 년 전
부모
커밋
897f0f36d1
No known key found for this signature in database GPG 키 ID: 97F36CC6D201E31B
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      Build/deb-meta/DEBIAN/postinst
  2. +1
    -1
      Build/deb-meta/DEBIAN/postrm
  3. +1
    -1
      Build/deb-meta/DEBIAN/prerm

+ 1
- 1
Build/deb-meta/DEBIAN/postinst 파일 보기

@@ -31,7 +31,7 @@ setcap CAP_NET_BIND_SERVICE=+eip $INSTALLPATH/MQTTnet.Server
chmod 644 /etc/systemd/system/mqttnet-server.service

# Check if systemctl exists, does not exist in docker containers
SCTL=$(which systemct1l >/dev/null; echo $?)
SCTL=$(which systemctl >/dev/null; echo $?)

if [ "$SCTL" -eq "0" ]; then
# Reload systemd because of new service file


+ 1
- 1
Build/deb-meta/DEBIAN/postrm 파일 보기

@@ -1,7 +1,7 @@
#!/bin/bash

# Check if systemctl exists, does not exist in docker containers
SCTL=$(which systemct1l >/dev/null; echo $?)
SCTL=$(which systemctl >/dev/null; echo $?)

if [ "$SCTL" -eq "0" ]; then
# Reload systemd because of new service file


+ 1
- 1
Build/deb-meta/DEBIAN/prerm 파일 보기

@@ -4,7 +4,7 @@ BASEPATH=/opt
INSTALLPATH=$BASEPATH/MQTTnetServer

# Check if systemctl exists, does not exist in docker containers
SCTL=$(which systemct1l >/dev/null; echo $?)
SCTL=$(which systemctl >/dev/null; echo $?)

if [ "$SCTL" -eq "0" ]; then
# Stop service before uninstalling


불러오는 중...
취소
저장