Merge branch 'develop' into stable
[akkoma] / rel / files / bin / pleroma_ctl
index 648ca405eaaeaaae7a6c70f4a265809eca04b1f4..d2949e8fed922b740ff05040ffcc1090b1c9e749 100755 (executable)
@@ -86,6 +86,9 @@ update() {
        curl "$full_uri" -o "${artifact}"
        echo "Unpacking ${artifact} to ${tmp}"
        unzip -q "$artifact" -d "$tmp"
+    echo "Backing up erlang cookie"
+    erlang_cookie=$(cat $RELEASE_ROOT/releases/COOKIE)
+    echo "Cookie: $erlang_cookie"
        echo "Copying files over to $RELEASE_ROOT"
        if [ "$NO_RM" = false ]; then
                echo "Removing files from the previous release"
@@ -95,7 +98,10 @@ update() {
        echo "Removing temporary files"
        rm -r "$tmp/release"
        rm "$artifact"
+    echo "Restoring erlang cookie"
+    echo $erlang_cookie > $RELEASE_ROOT/releases/COOKIE
        echo "Done! Please refer to the changelog/release notes for changes and update instructions"
+    echo "You probably also want to update your frontend!"
        set +e
 }