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 -efu
|
|
|
|
dhcpcd_conf="/etc/dhcpcd.conf"
|
|
|
|
[ -f "$dhcpcd_conf" ] || exit 0
|
|
|
|
grep -q '^option[[:blank:]]\+vendor_encapsulated_options' "$dhcpcd_conf" || {
|
|
echo "# added by 70-network-shares-dhcpcd.sh"
|
|
echo "option vendor_encapsulated_options"
|
|
} >> "$dhcpcd_conf"
|
|
|