# Created by Tobias Powalowski <tpowa@archlinux.org>

install ()
{
    MODULES=" $(checked_modules "/drivers/net/") "

    BINARIES="$(basename $(find /usr/bin/screen-*)) telnet tcpd findssl.sh scp sftp ssh ssh-add ssh-agent ssh-copy-id ssh-keygen ssh-keyscan sshd pmap_set pmap_dump portmap xinetd in.telnetd rsync exportfs nfsstat rpc.idmapd rpc.mountd rpc.nfsd rpc.statd rpcdebug showmount sm-notify start-statd"
    FILES=""
    SCRIPT="arch_remote"
    add_file "/etc/archboot/etc/remote/hosts.allow" "/etc/hosts.allow"
    add_file "/etc/archboot/etc/remote/hosts.deny" "/etc/hosts.deny"
    add_file "/etc/archboot/etc/remote/screenrc" "/etc/screenrc"
    add_file "/etc/archboot/etc/remote/xinetd.conf" "/etc/xinetd.conf"
    add_file "/etc/archboot/etc/remote/servers_xinetd" "/etc/xinetd.d/servers"
    add_file "/etc/archboot/etc/remote/services_xinetd" "/etc/xinetd.d/services"
    add_file "/etc/archboot/etc/remote/telnet_xinetd" "/etc/xinetd.d/telnet"
    add_file "/etc/archboot/etc/remote/ssh_config_ssh" "/etc/ssh/ssh_config"
    add_file "/etc/archboot/etc/remote/sshd_config_ssh" "/etc/ssh/sshd_config"
    add_file "/etc/archboot/etc/remote/moduli_ssh" "/etc/ssh/moduli"
    add_file "/etc/archboot/etc/remote/sshd_pam" "/etc/pam.d/sshd"
    add_file "/etc/archboot/etc/remote/screen_pam" "/etc/pam.d/screen"
    add_file "/etc/archboot/etc/remote/rsyncd.conf" "/etc/rsyncd.conf"
    add_file "/etc/archboot/etc/remote/rsync_xinetd" "/etc/xinet.d/rsync"
    add_file "/etc/archboot/etc/remote/exports" "/etc/exports"
    for i in $(find /usr/share/terminfo/ ! -type d); do
    	add_file "$i"
    done
    add_file "/usr/lib/ssh/sftp-server"
    add_file "/usr/lib/ssh/ssh-keysign"
    add_file "/etc/rc.d/portmap"
    add_file "/etc/rc.d/sshd"
    add_file "/etc/rc.d/xinetd"
    add_file "/etc/rc.d/rsyncd"
    add_dir  "/var/empty"
    add_file "/etc/rc.d/nfsd"
    add_file "/etc/rc.d/nfslock"
    add_file "/etc/archboot/etc/conf.d/nfs_conf.d" "/etc/conf.d/nfs"
    add_dir "/var/lib/nfs/sm"
    add_dir "/var/lib/nfs/sm.bak"
    add_dir "/var/lib/nfs/v4recovery"
}

help ()
{
cat<<HELPEOF
  This hook includes remote tools on an arch boot image.
HELPEOF
} 
