vagrant/chef/cookbooks/dhcprelay/recipes/default.rb (13 lines of code) (raw):

# Copyright (c) Facebook, Inc. and its affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. package 'isc-dhcp-relay' do action :install end template '/etc/default/isc-dhcp-relay' do source 'etc_default_isc-dhcp-relay.erb' owner 'root' group 'root' mode '0644' notifies :restart, 'service[isc-dhcp-relay]' end service 'isc-dhcp-relay' do action [:enable, :start] end