Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
649
Issues
649
List
Boards
Labels
Service Desk
Milestones
Merge Requests
213
Merge Requests
213
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
caba6544
Commit
caba6544
authored
Mar 05, 2010
by
Leonardo Arena
Committed by
Natanael Copa
Aug 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main/sysklogd: automatic configure of service runlevels added
(cherry picked from commit
cd8f1d31
)
parent
6483fdd3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
main/sysklogd/APKBUILD
main/sysklogd/APKBUILD
+2
-1
main/sysklogd/sysklogd.post-install
main/sysklogd/sysklogd.post-install
+5
-0
main/sysklogd/sysklogd.pre-deinstall
main/sysklogd/sysklogd.pre-deinstall
+5
-0
No files found.
main/sysklogd/APKBUILD
View file @
caba6544
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
sysklogd
pkgver
=
1.5
pkgrel
=
3
pkgrel
=
4
pkgdesc
=
"System and kernel log daemons"
url
=
"http://www.infodrom.org/projects/sysklogd/"
license
=
"GPL BSD"
subpackages
=
"
$pkgname
-doc"
depends
=
makedepends
=
""
install
=
"sysklogd.post-install sysklogd.pre-deinstall"
source
=
"http://www.infodrom.org/projects/
$pkgname
/download/
$pkgname
-
$pkgver
.tar.gz
sysklogd.logrotate
sysklogd.daily
...
...
main/sysklogd/sysklogd.post-install
0 → 100644
View file @
caba6544
#!/bin/sh
INIT
=
syslog
RUNLEVEL
=
`
rc-update show |
grep
$INIT
|
awk
'{ print $3 }'
`
rc-update del
$INIT
$RUNLEVEL
rc-update add sysklogd
$RUNLEVEL
main/sysklogd/sysklogd.pre-deinstall
0 → 100644
View file @
caba6544
#!/bin/sh
INIT
=
sysklogd
RUNLEVEL
=
`
rc-update show |
grep
$INIT
|
awk
'{ print $3 }'
`
rc-update del
$INIT
$RUNLEVEL
rc-update add syslog
$RUNLEVEL
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