mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-12-29 11:06:12 -05:00
19 lines
289 B
Plaintext
19 lines
289 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
## Copyright (C) 2012 - 2019 ENCRYPTED SUPPORT LP <adrelanos@riseup.net>
|
||
|
## See the file COPYING for copying conditions.
|
||
|
|
||
|
PREREQ=""
|
||
|
prereqs()
|
||
|
{
|
||
|
echo "$PREREQ"
|
||
|
}
|
||
|
case $1 in
|
||
|
prereqs)
|
||
|
prereqs
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
sysctl -p ${rootmnt}/etc/sysctl.d/*.conf
|