Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
c76dd524
Commit
c76dd524
authored
9 years ago
by
José Luis Gutiérrez
Committed by
Alessandro Rubini
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
www: system monitor fix
system monitor can be now enabled or disabled from web interface in management.php page.
parent
166aaf38
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
userspace/rootfs_override/var/www/functions.php
+11
-4
11 additions, 4 deletions
userspace/rootfs_override/var/www/functions.php
with
11 additions
and
4 deletions
userspace/rootfs_override/var/www/functions.php
+
11
−
4
View file @
c76dd524
...
...
@@ -341,8 +341,13 @@ function check_snmp_status(){
}
function
check_monit_status
(){
$output
=
intval
(
shell_exec
(
"ps aux | grep -c monit"
));
return
(
$output
>
2
)
?
1
:
0
;
$output
=
shell_exec
(
"/bin/ps axo command,state | grep '^/usr/bin/monit' | awk '{print $2}'"
);
if
(
empty
(
$output
)
||
(
strpos
(
$output
,
'T'
)
!==
false
)){
return
0
;
/* monit is disabled or not in dotconfig */
}
else
{
return
1
;
/* monit is running */
}
}
function
wrs_interface_setup
(){
...
...
@@ -763,11 +768,13 @@ function wrs_management(){
if
(
check_monit_status
()){
//It is running
//Stop SNMP
shell_exec
(
"/bin/sh /etc/init.d/monit.sh stop > /dev/null 2>&1 &"
);
shell_exec
(
"/etc/init.d/monit.sh stop > /dev/null 2>&1 &"
);
echo
"i have disable it<br>"
;
}
else
{
//Not running
shell_exec
(
"/bin/sh /etc/init.d/monit.sh start > /dev/null 2>&1 &"
);
shell_exec
(
"/etc/init.d/monit.sh start > /dev/null 2>&1 &"
);
echo
"i have enable it<br>"
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment