Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
48b70d0f
Commit
48b70d0f
authored
Apr 01, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add reboot_xmlrpc, firmware_version_xmlrpc
parent
223ca102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
5 deletions
+27
-5
legacy.inc
src/etc/inc/xmlrpc/legacy.inc
+27
-5
No files found.
src/etc/inc/xmlrpc/legacy.inc
View file @
48b70d0f
...
...
@@ -27,7 +27,6 @@
POSSIBILITY OF SUCH DAMAGE.
*/
/**
* request functions which may be registered by the xmlrpc system
* @return array
...
...
@@ -37,7 +36,7 @@ function xmlrpc_publishable_legacy()
$publish
=
array
(
'exec_shell_xmlrpc'
,
'exec_php_xmlrpc'
,
'filter_configure_xmlrpc'
,
'interfaces_carp_configure_xmlrpc'
,
'backup_config_section_xmlrpc'
,
'restore_config_section_xmlrpc'
,
'merge_config_section_xmlrpc'
,
'check_firmware_version_xmlrpc'
,
'
pfsense_
firmware_version_xmlrpc'
,
'reboot_xmlrpc'
,
'get_notices_xmlrpc'
'check_firmware_version_xmlrpc'
,
'firmware_version_xmlrpc'
,
'reboot_xmlrpc'
,
'get_notices_xmlrpc'
);
...
...
@@ -45,11 +44,10 @@ function xmlrpc_publishable_legacy()
}
/**
* trigger getnotices
* @param $params
* @param null $category
* @return mixed
*/
function
get_notices_xmlrpc
(
$category
=
null
)
function
get_notices_xmlrpc
(
$category
=
null
)
{
if
(
!
function_exists
(
"get_notices"
))
{
require_once
(
"notices.inc"
);
...
...
@@ -60,4 +58,28 @@ function get_notices_xmlrpc($category=null)
}
else
{
return
get_notices
(
$category
);
}
}
/**
* perform a system reboot
* @return bool true
*/
function
reboot_xmlrpc
()
{
mwexec_bg
(
"/usr/local/etc/rc.reboot"
);
return
true
;
}
/**
* retrieve firmware version
* @return mixed
*/
function
firmware_version_xmlrpc
()
{
if
(
!
function_exists
(
"get_notices"
))
{
require_once
(
"pfsense-utils.inc"
);
}
return
host_firmware_version
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment