~ggouzi/obinstall/obinstall

« back to all changes in this revision

Viewing changes to demos/bin/orange-box-resetproxy

  • Committer: MMorana
  • Date: 2016-03-24 01:18:40 UTC
  • Revision ID: mass@ubuntu.com-20160324011840-blxydmf7ca4ggle0
Splitting out demos from install

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
#
3
 
#    orange-box-resetproxy
4
 
#    Copyright (C) 2014 Canonical Ltd.
5
 
#
6
 
#    Authors: Nicolas Thomas <nicolas.thomas@canonical.com>
7
 
#
8
 
#    This program is free software: you can redistribute it and/or modify
9
 
#    it under the terms of the GNU General Public License as published by
10
 
#    the Free Software Foundation, version 3 of the License.
11
 
#
12
 
#    This program is distributed in the hope that it will be useful,
13
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
#    GNU General Public License for more details.
16
 
#
17
 
#    You should have received a copy of the GNU General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
 
20
 
set -ex
21
 
# Only run this as root
22
 
if [ $EUID -ne 0 ]
23
 
then
24
 
        echo Execute as root or with \"sudo $0\"
25
 
        exit 1
26
 
fi
27
 
 
28
 
 
29
 
 
30
 
service maas-proxy stop
31
 
rm -rf  /var/spool/maas-proxy/*
32
 
squid3 -z -f /etc/maas/maas-proxy.conf 
33
 
sleep 20
34
 
service maas-proxy start