Skip to content
Snippets Groups Projects
Commit d1986508 authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Use Panel for git clone commands.

parent 39242d2a
No related branches found
No related tags found
No related merge requests found
server { server {
listen 80; listen 80;
server_name {{ server_name }};
root /var/www/videos/;
access_log /var/log/nginx/access_videos.log;
error_log /var/log/nginx/error_videos.log;
add_header Access-Control-Allow-Origin "*";
}
server {
listen 443 ssl; listen 443 ssl;
server_name {{ server_name }}; server_name {{ server_name }};
......
...@@ -29,7 +29,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -y ubicast-config ...@@ -29,7 +29,7 @@ DEBIAN_FRONTEND=noninteractive apt-get install -y ubicast-config
# new skin templates # new skin templates
#cd /etc/munin #cd /etc/munin
#git clone https://git.ubicast.net/mediaserver/munin-monitoring-theme.git #git clone https://panel.ubicast.eu/git/mediaserver/munin-monitoring-theme.git
#mv /etc/munin/static /etc/munin/static.orig #mv /etc/munin/static /etc/munin/static.orig
#mv /etc/munin/templates /etc/munin/templates.orig #mv /etc/munin/templates /etc/munin/templates.orig
#cp -pr munin-monitoring-theme/templates/munstrap/static /etc/munin/ #cp -pr munin-monitoring-theme/templates/munstrap/static /etc/munin/
......
...@@ -6,7 +6,7 @@ apt-get install -y dialog build-essential ...@@ -6,7 +6,7 @@ apt-get install -y dialog build-essential
cd /root cd /root
rm -rf burp-custom rm -rf burp-custom
git clone https://git.ubicast.net/mediaserver/burp-custom.git burp-custom git clone https://panel.ubicast.eu/git/mediaserver/burp-custom.git burp-custom
# set conf # set conf
sed -i "s@^BURP_STATUS_IP=.*@BURP_STATUS_IP=${BURP_STATUS_IP}@" /root/burp-custom/burp-custom.sh sed -i "s@^BURP_STATUS_IP=.*@BURP_STATUS_IP=${BURP_STATUS_IP}@" /root/burp-custom/burp-custom.sh
......
...@@ -190,7 +190,7 @@ class Tester(): ...@@ -190,7 +190,7 @@ class Tester():
os.chdir(self.root_dir) os.chdir(self.root_dir)
else: else:
log('Cloning ms-testing-suite in "%s".' % ms_path) log('Cloning ms-testing-suite in "%s".' % ms_path)
subprocess.check_call(['git', 'clone', 'https://git.ubicast.net/mediaserver/ms-testing-suite.git', ms_path]) subprocess.check_call(['git', 'clone', 'https://panel.ubicast.eu/git/mediaserver/ms-testing-suite.git', ms_path])
# Add tests to list # Add tests to list
wowza_dir = '/usr/local/WowzaStreamingEngine' wowza_dir = '/usr/local/WowzaStreamingEngine'
etc_lives_conf = '/etc/mediaserver/lives_conf.py' etc_lives_conf = '/etc/mediaserver/lives_conf.py'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment