Changes

From Amahi Wiki
Jump to: navigation, search
no edit summary
Add the following entry in your crontab ('''crontab -e''' to edit your crontab).<br/>
Note: Notes*Replace '''your_username''' with your Fedora username (for example ''joe'').*Replace '''hda_ip_address''' with your HDA IP address.
<div style="border: 1px solid #A3B1BF; padding: .5em 1em; color: #000; background-color: #E6F2FF; margin: 3px 3px 1em 3px;">
<nowiki>* * * * *</nowiki> ssh '''your_username'''@hda '''hda_ip_address''' "sudo bin/hda-get-hosts" > /tmp/hosts.hda ; grep -v "From HDA$\|Amahi HDA$" /etc/hosts > /tmp/hosts.new ; echo "# The following lines were added from your Amahi HDA" >> /tmp/hosts.new ; cat /tmp/hosts.hda >> /tmp/hosts.new ; sudo cp -f /tmp/hosts.new /etc/hosts
</div>