web-dev-qa-db-ja.com

Ubuntu 16.04にhipchatをインストールする方法

Aptソースにリポジトリを追加してapt updateを実行すると、次のエラーが発生します。

E: Failed to fetch https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/dists/xenial/Release  No Hash entry in Release file /var/lib/apt/lists/partial/atlassian.artifactoryonline.com_atlassian_hipchat-apt-client_dists_xenial_Release which is considered strong enough for security purposes
E: Some index files failed to download. They have been ignored, or old ones used instead.

これはパッケージ署名のセキュリティの変更によるものであり、アトラシアンとサポートチケットを開いたことがありますが、返事はありません。

一方、回避策はありますか?

6
Hemant Kumar

Atlassianがレポジトリを修正するまで、 debファイル をダウンロードし、dpkgを使用してインストールできます。

    wget https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-4.0.1517-Linux.deb
    Sudo dpkg -i HipChat4-4.0.1517-Linux.deb
21
neofug
Sudo sh -c 'echo "deb https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client $(lsb_release -c -s) main" > /etc/apt/sources.list.d/atlassian-hipchat4.list'

wget -O - https://atlassian.artifactoryonline.com/atlassian/api/gpg/key/public | Sudo apt-key add -

Sudo apt-get update

Sudo apt-get install hipchat4 
0
Khawar