We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de577eb commit d2e588aCopy full SHA for d2e588a
.zsh/autoload/post/50_archlinux_management.zsh
@@ -1,7 +1,8 @@
1
# Install a package and commit this to the repository in /etc.
2
# Parameters: the package to be installed.
3
function installpkg() {
4
- pacman --noconfirm -S "$1"
+ echo "INSTALL: '$1'"
5
+ pacman --noconfirm -S "$1" > /dev/null
6
commit_all "/etc" "[INSTALL] $1"
7
commit_all "/var/log" "[INSTALL] $1"
8
#TODO: write data to a syslog-ng file, which will be replayed back later
0 commit comments