Skip to content

Commit

Permalink
fix name to be backwards compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
bnagtega committed Mar 15, 2021
1 parent dc97a36 commit db95913
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions dex-load/src/main/resources/reinstallExtension.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
systemctl stop TN-devnet.service || true
dpkg -P TN-dex-extension-devnet || true
dpkg -i /home/buildagent-matcher/TN-dex-extension-devnet*.deb
systemctl stop tn-devnet.service || true
dpkg -P tn-dex-extension-devnet || true
dpkg -i /home/buildagent-matcher/tn-dex-extension-devnet*.deb
dpkg -i /home/buildagent-matcher/grpc-server-devnet*.deb
systemctl start TN-devnet
systemctl start tn-devnet
rm -rf /home/buildagent-matcher/*
4 changes: 2 additions & 2 deletions dex-load/src/main/resources/reinstallMatcher.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
systemctl stop TN-dex.service || true
systemctl stop tn-dex.service || true
rm -rf /var/lib/tn-dex/data || true
dpkg -P tn-dex || true
dpkg -i /home/buildagent-matcher/tn-dex*.deb
sed -i "5s/.*/ topic = \"$(uuidgen)\"/" /etc/tn-dex/queue.conf
systemctl start TN-dex
systemctl start tn-dex
rm -rf /home/buildagent-matcher/*
2 changes: 1 addition & 1 deletion dex/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ inConfig(Universal)(
// DEB package
inConfig(Linux)(
Seq(
name := "TN-dex", // A staging directory name
name := "tn-dex", // A staging directory name
normalizedName := name.value, // An archive file name
packageName := name.value // In a control file
)
Expand Down

0 comments on commit db95913

Please sign in to comment.