-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path950-network-discovery.sh
executable file
·39 lines (28 loc) · 1.66 KB
/
950-network-discovery.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
# ToppDev's Arch Linux Installation Scripts (TALIS)
# by Thomas Topp <[email protected]>
# License: GNU GPLv3
# ########################################################################################################## #
# Helper scripts #
# ########################################################################################################## #
scriptdir="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
source "$scriptdir/helper/color.sh"
source "$scriptdir/helper/log.sh"
source "$scriptdir/helper/install.sh"
source "$scriptdir/helper/checkArchRootInternet.sh"
# ########################################################################################################## #
# Check Arch distro #
# ########################################################################################################## #
check_arch_internet
# ########################################################################################################## #
# Installation #
# ########################################################################################################## #
pacinstall avahi
sudo systemctl enable avahi-daemon.service
sudo systemctl start avahi-daemon.service
#shares on a mac
pacinstall nss-mdns
#shares on a linux
pacinstall gvfs-smb
# ########################################################################################################## #
box "Network discovery software installed"