flow: icon of monitoring tab and update nginx config
This commit is contained in:
parent
7cc9aa4845
commit
69b8782fb4
|
@ -192,7 +192,7 @@
|
||||||
"type": "ui_tab",
|
"type": "ui_tab",
|
||||||
"z": "",
|
"z": "",
|
||||||
"name": "System Monitoring",
|
"name": "System Monitoring",
|
||||||
"icon": "fa-cogs",
|
"icon": "fa-thermometer-full",
|
||||||
"order": 7,
|
"order": 7,
|
||||||
"disabled": false,
|
"disabled": false,
|
||||||
"hidden": false
|
"hidden": false
|
||||||
|
@ -1851,7 +1851,7 @@
|
||||||
"order": 1,
|
"order": 1,
|
||||||
"width": 4,
|
"width": 4,
|
||||||
"height": 4,
|
"height": 4,
|
||||||
"format": "<md-button ng-click=\"send({payload: {tab:'System Monitoring'}})\" style=\"height:100%;\">\n <i class=\"fa fa-cogs fa-5x\"></i>\n <div style=\"margin-top:30px;\">System Monitoring</div>\n</md-button>",
|
"format": "<md-button ng-click=\"send({payload: {tab:'System Monitoring'}})\" style=\"height:100%;\">\n <i class=\"fa fa-thermometer-full fa-5x\"></i>\n <div style=\"margin-top:30px;\">System Monitoring</div>\n</md-button>",
|
||||||
"storeOutMessages": true,
|
"storeOutMessages": true,
|
||||||
"fwdInMessages": true,
|
"fwdInMessages": true,
|
||||||
"resendOnRefresh": false,
|
"resendOnRefresh": false,
|
||||||
|
|
|
@ -19,18 +19,22 @@ function special(){
|
||||||
if [[ -f "/etc/udev/rules.d/99-local.rules" ]]; then
|
if [[ -f "/etc/udev/rules.d/99-local.rules" ]]; then
|
||||||
sudo rm /etc/udev/rules.d/99-local.rules
|
sudo rm /etc/udev/rules.d/99-local.rules
|
||||||
fi
|
fi
|
||||||
if ! [[ -f "/etc/nginx/sites-available/gallery.conf" ]]; then
|
|
||||||
${log} "Nginx config is not installed, doing that now"
|
|
||||||
sudo cp /home/pi/PlanktonScope/scripts/gallery/gallery.conf /etc/nginx/sites-available/gallery.conf
|
|
||||||
sudo ln -s /etc/nginx/sites-available/gallery.conf /etc/nginx/sites-enabled/gallery.conf
|
|
||||||
sudo nginx -t && sudo systemctl reload nginx
|
|
||||||
fi
|
|
||||||
if [[ -f "/etc/nginx/sites-available/img.conf" ]]; then
|
if [[ -f "/etc/nginx/sites-available/img.conf" ]]; then
|
||||||
${log} "Getting rid of the old nginx config"
|
${log} "Getting rid of the old nginx config"
|
||||||
sudo rm /etc/nginx/sites-available/img.conf
|
sudo rm /etc/nginx/sites-available/img.conf
|
||||||
sudo rm /etc/nginx/sites-enabled/img.conf
|
sudo rm /etc/nginx/sites-enabled/img.conf
|
||||||
sudo nginx -t && sudo systemctl reload nginx
|
sudo nginx -t && sudo systemctl reload nginx
|
||||||
fi
|
fi
|
||||||
|
if [[ -f "/etc/nginx/sites-available/gallery.conf" ]]; then
|
||||||
|
${log} "Updating the old nginx config"
|
||||||
|
sudo rm /etc/nginx/sites-available/gallery.conf
|
||||||
|
fi
|
||||||
|
if ! [[ -f "/etc/nginx/sites-available/gallery.conf" ]]; then
|
||||||
|
${log} "Nginx config is not installed, doing that now"
|
||||||
|
sudo cp /home/pi/PlanktonScope/scripts/gallery/gallery.conf /etc/nginx/sites-available/gallery.conf
|
||||||
|
sudo ln -s /etc/nginx/sites-available/gallery.conf /etc/nginx/sites-enabled/gallery.conf
|
||||||
|
sudo nginx -t && sudo systemctl reload nginx
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
${log} "Updating the main repository"
|
${log} "Updating the main repository"
|
||||||
|
|
Loading…
Reference in a new issue