You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
# bump name services caching time up
|
|
|
|
[ -s /etc/nscd.conf ] || exit 0
|
|
|
|
sed -i 's/\(positive-time-to-live[^0-9]*\)[0-9]*$/\1 31536000/g' /etc/nscd.conf
|
|
|