Browse Source

Update openhab-install.sh

tteckster 2 years ago
parent
commit
7797589a7e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      install/openhab-install.sh

+ 2 - 2
install/openhab-install.sh

@@ -33,11 +33,11 @@ msg_info "Installing openHAB"
 curl -fsSL "https://openhab.jfrog.io/artifactory/api/gpg/key/public" | gpg --dearmor >openhab.gpg
 mv openhab.gpg /usr/share/keyrings
 chmod u=rw,g=r,o=r /usr/share/keyrings/openhab.gpg
-sudo sh -c 'echo "deb [signed-by=/usr/share/keyrings/openhab.gpg] https://openhab.jfrog.io/artifactory/openhab-linuxpkg stable main" > /etc/apt/sources.list.d/openhab.list'
+echo "deb [signed-by=/usr/share/keyrings/openhab.gpg] https://openhab.jfrog.io/artifactory/openhab-linuxpkg stable main" > /etc/apt/sources.list.d/openhab.list
 $STD apt update
 $STD apt-get -y install openhab
 systemctl daemon-reload
-$STD systemctl enable --now openhab.service
+systemctl enable -q --now openhab.service
 msg_ok "Installed openHAB"
 
 motd_ssh