Browse Source

Fixed spelling

release/3.x.x
Damian Wolgast 3 years ago
parent
commit
897f0f36d1
No known key found for this signature in database GPG Key ID: 97F36CC6D201E31B
3 changed files with 3 additions and 3 deletions
  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 View File

@@ -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 View File

@@ -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 View File

@@ -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


Loading…
Cancel
Save