Skip to content

Commit

Permalink
reduce rsync verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
ka9q committed Aug 24, 2023
1 parent 2e3d45a commit faaacb4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -57,32 +57,32 @@ install: $(DAEMONS) $(EXECS) start-ka9q-horus.sh
/usr/sbin/adduser --quiet --system --ingroup radio recordings
/usr/sbin/adduser --quiet --system --ingroup radio aprsfeed
# install -o root -m 0755 -D --target-directory=/etc/sysctl.d 98-sockbuf.conf
rsync -va config/98-sockbuf.conf /etc/sysctl.d
rsync -a config/98-sockbuf.conf /etc/sysctl.d

# install -o root -m 0755 -D --target-directory=$(DAEMONDIR) $(DAEMONS) start-ka9q-horus.sh
rsync -va $(DAEMONS) start-ka9q-horus.sh $(DAEMONDIR)
rsync -a $(DAEMONS) start-ka9q-horus.sh $(DAEMONDIR)

# install -o root -m 0755 -D --target-directory=$(BINDIR) $(EXECS)
rsync -va $(EXECS) $(BINDIR)
rsync -a $(EXECS) $(BINDIR)
setcap cap_sys_nice=ep $(BINDIR)/monitor

# install -o root -m 0644 -D --target-directory=$(LIBDIR) $(AFILES)
(cd aux;rsync -va $(AFILES) $(LIBDIR))
(cd aux;rsync -a $(AFILES) $(LIBDIR))

# install -o root -m 0644 -D --target-directory=/etc/systemd/system $(SYSTEMD_FILES)
(cd service;rsync -va $(SYSTEMD_FILES) /etc/systemd/system)
(cd service;rsync -a $(SYSTEMD_FILES) /etc/systemd/system)

# install -o root -m 0644 -D --target-directory=/etc/udev/rules.d $(UDEV_FILES)
(cd rules;rsync -va $(UDEV_FILES) /etc/udev/rules.d)
(cd rules;rsync -a $(UDEV_FILES) /etc/udev/rules.d)

# install -o root -m 0644 -D --target-directory=/etc/modprobe.d $(BLACKLIST)
(cd config;rsync -va $(BLACKLIST) /etc/modprobe.d)
(cd config;rsync -a $(BLACKLIST) /etc/modprobe.d)

# install -o root -m 0644 -D --target-directory=/etc/logrotate.d $(LOGROTATE_FILES)
(cd config;rsync -va $(LOGROTATE_FILES) /etc/logrotate.d)
(cd config;rsync -a $(LOGROTATE_FILES) /etc/logrotate.d)

# install -o root -m 0664 -D --target-directory=/etc/radio $(CONF_FILES);
(cd config;rsync -va $(CONF_FILES) /etc/radio)
(cd config;rsync -a $(CONF_FILES) /etc/radio)

mkdir -p /etc/fftw /etc/radio $(VARDIR)
chgrp radio $(VARDIR) /etc/radio /etc/fftw
Expand Down

0 comments on commit faaacb4

Please sign in to comment.