Procházet zdrojové kódy

Fixed spelling

release/3.x.x
Damian Wolgast před 3 roky
rodič
revize
897f0f36d1
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 97F36CC6D201E31B
3 změnil soubory, kde provedl 3 přidání a 3 odebrání
  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 Zobrazit soubor

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

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

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


Načítá se…
Zrušit
Uložit