Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
mxtools
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
16
Pull requests
4
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
6795406
applications-defaults
blink
checktrust
clusterd
crashkernel
cronwrap
desktop-files
etc
fon
forensics
hostconfig
kill-exuser
kvm_monitor
libexec_cron
libexec_startup
logrotate
make-automaps
mkmotd
mozilla-launcher
mxgrub
mxmirror
mxmount
mxnetctl
mxproxmox
mxqi
mxraid
mxrouter
mxshadow
mxsnoop
mxstartup
mxvlan
net_qdisc_nfs_low
netlog
nfsdtop
nvidiactl
pdist
pkgadmin
pmirror
prun
put_websafe
serial-log
slowio
unbound
unbound-startup
unbound.service
usrlocalpkg
uvpn
vmcontrol
wakeonlan
.gitignore
Makefile
README.md
install.sh
Breadcrumbs
mxtools
/
unbound
/
unbound-startup
Blame
Blame
Latest commit
History
History
executable file
·
38 lines (31 loc) · 620 Bytes
Breadcrumbs
mxtools
/
unbound
/
unbound-startup
Top
File metadata and controls
Code
Blame
executable file
·
38 lines (31 loc) · 620 Bytes
Raw
#! /bin/sh # # unbound is usuually started via systemd. # only setup-var option is used by unbound.service function setup_var() { test -d /var/unbound || { mkdir -p /var/unbound;chown unbound /var/unbound; } test -e /var/unbound/root.key -a /var/unbound/root.key -nt /etc/unbound/root.key || { cp /etc/unbound/root.key /var/unbound/root.key chown unbound /var/unbound/root.key } } case $* in start) setup_var unbound-control start ;; stop) unbound-control stop ;; debug) setup_var unbound -dd -v ;; setup-var) setup_var ;; *) echo "usage: $0 [start | stop]" exit 1 ;; esac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
You can’t perform that action at this time.