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
16c6d5b4
Commit
16c6d5b4
authored
Apr 08, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup some "all" keywords in configd calls
parent
fe4566b0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
pfsense-utils.inc
src/etc/inc/pfsense-utils.inc
+1
-1
rc.bootup
src/etc/rc.bootup
+1
-1
rc.dyndns.update
src/etc/rc.dyndns.update
+1
-1
actions_interface.conf
src/opnsense/service/conf/actions.d/actions_interface.conf
+1
-1
system_gateway_groups.php
src/www/system_gateway_groups.php
+1
-1
No files found.
src/etc/inc/pfsense-utils.inc
View file @
16c6d5b4
...
@@ -619,7 +619,7 @@ function reload_all() {
...
@@ -619,7 +619,7 @@ function reload_all() {
* none
* none
******/
******/
function
reload_interfaces
()
{
function
reload_interfaces
()
{
configd_run
(
"interface reload
all
"
);
configd_run
(
"interface reload"
);
}
}
/****f* legacy/reload_all_sync
/****f* legacy/reload_all_sync
...
...
src/etc/rc.bootup
View file @
16c6d5b4
...
@@ -286,7 +286,7 @@ services_dhcrelay_configure();
...
@@ -286,7 +286,7 @@ services_dhcrelay_configure();
services_dhcrelay6_configure
();
services_dhcrelay6_configure
();
/* dyndns service updates */
/* dyndns service updates */
configd_run
(
"dyndns reload
all
"
);
configd_run
(
"dyndns reload"
);
/* Run a filter configure now that most all services have started */
/* Run a filter configure now that most all services have started */
filter_configure_sync
();
filter_configure_sync
();
...
...
src/etc/rc.dyndns.update
View file @
16c6d5b4
...
@@ -37,7 +37,7 @@ require_once("shaper.inc");
...
@@ -37,7 +37,7 @@ require_once("shaper.inc");
$argument
=
trim
(
$argv
[
1
],
"
\n
"
);
$argument
=
trim
(
$argv
[
1
],
"
\n
"
);
if
(
empty
(
$argument
)
||
$argument
==
"all"
)
{
if
(
empty
(
$argument
))
{
services_dyndns_configure
();
services_dyndns_configure
();
services_dnsupdate_process
();
services_dnsupdate_process
();
}
else
{
}
else
{
...
...
src/opnsense/service/conf/actions.d/actions_interface.conf
View file @
16c6d5b4
...
@@ -4,7 +4,7 @@ parameters:%s
...
@@ -4,7 +4,7 @@ parameters:%s
type
:
script
type
:
script
message
:
Configuring
interface
%
s
message
:
Configuring
interface
%
s
[
reload
.
all
]
[
reload
]
command
:/
usr
/
local
/
etc
/
rc
.
reload_interfaces
command
:/
usr
/
local
/
etc
/
rc
.
reload_interfaces
parameters
:
parameters
:
type
:
script
type
:
script
...
...
src/www/system_gateway_groups.php
View file @
16c6d5b4
...
@@ -59,7 +59,7 @@ if ($_POST) {
...
@@ -59,7 +59,7 @@ if ($_POST) {
$retval
=
system_routing_configure
();
$retval
=
system_routing_configure
();
configd_run
(
'dyndns reload
all
'
);
configd_run
(
'dyndns reload'
);
configd_run
(
'ipsecdns reload'
);
configd_run
(
'ipsecdns reload'
);
configd_run
(
'filter reload'
);
configd_run
(
'filter reload'
);
...
...
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