| 123456789101112131415161718192021222324252627282930313233 | require 'serverspec'describe cron do  it { should have_entry '*/5 * * * * wget -q -O /etc/fastd/fastd-blacklist.json https://raw.githubusercontent.com/ffruhr/fastdbl/master/fastd-blacklist.json' }enddescribe user('fritz') do  it { should exist }  it { should have_authorized_key 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCfO2TgNUMcY9K8N9SsAU/LfVtlloO50n6NRxDER8dCi+t1ydalTbNdEj52cIjqvIEn458cCxdCwsNYeWqSVggX7vT7a+DgYZlJcRteHcb0lPYZplPuiZe3AUE9rHH48W4xEopv7J8Wz6hLng6Gb0TQx9HeVybQ5dn6CGyt8sOCKQ== Fritz Brinkhoffs' }  it { should belong_to_group 'sudo' }enddescribe port(67) do  it { should be_listening.with('udp') }enddescribe process('unbound') do  it { should be_running }enddescribe port(53) do  it { should be_listening.with('udp') }  it { should be_listening.with('udp6') }enddescribe process('ntpd') do  it { should be_running }enddescribe port(123) do  it { should be_listening.with('udp') }  it { should be_listening.with('udp') }end
 |