mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-02-24 04:21:12 +03:00
62 lines
2.7 KiB
Bash
Executable File
62 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
rm -rfv $PWD/current $PWD/archived
|
|
mkdir -p $PWD/current $PWD/archived
|
|
|
|
###################################################################################################
|
|
# Current links
|
|
###################################################################################################
|
|
|
|
# Bamboo
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/bamboo.json
|
|
|
|
# Bitbucket (Stash)
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/stash.json
|
|
|
|
# Confluence
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/confluence.json
|
|
|
|
# Crowd
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/crowd.json
|
|
|
|
# Crucible
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/crucible.json
|
|
|
|
# FishEye
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/fisheye.json
|
|
|
|
# Jira
|
|
#wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/jira.json
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/jira-core.json
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/jira-software.json
|
|
wget -c --random-wait -P $PWD/current/ https://my.atlassian.com/download/feeds/current/jira-servicedesk.json
|
|
|
|
|
|
###################################################################################################
|
|
# Archived links
|
|
###################################################################################################
|
|
|
|
# Bamboo
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/bamboo.json
|
|
|
|
# Bitbucket (Stash)
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/stash.json
|
|
|
|
# Confluence
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/confluence.json
|
|
|
|
# Crowd
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/crowd.json
|
|
|
|
# Crucible
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/crucible.json
|
|
|
|
# FishEye
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/fisheye.json
|
|
|
|
# Jira
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/jira.json
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/jira-core.json
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/jira-software.json
|
|
wget -c --random-wait -P $PWD/archived/ https://my.atlassian.com/download/feeds/archived/jira-servicedesk.json
|
|
|