mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
@@ -101,9 +101,6 @@ function _iVerbose() {
|
|||||||
#
|
#
|
||||||
# If given the command line option `--silence`, then the command's standard and
|
# If given the command line option `--silence`, then the command's standard and
|
||||||
# error output is sent to `/dev/null` on a live run.
|
# error output is sent to `/dev/null` on a live run.
|
||||||
#
|
|
||||||
# Note, the run function is exported. I.e., it is available also to called Bash
|
|
||||||
# script.
|
|
||||||
function run() {
|
function run() {
|
||||||
if [[ $1 == '--silence' ]]; then
|
if [[ $1 == '--silence' ]]; then
|
||||||
local silence=1
|
local silence=1
|
||||||
@@ -118,4 +115,3 @@ function run() {
|
|||||||
"$@"
|
"$@"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
export -f run
|
|
||||||
|
|||||||
@@ -110,5 +110,10 @@ function systemdPostReload() {
|
|||||||
oldGenPath="$1"
|
oldGenPath="$1"
|
||||||
newGenPath="$2"
|
newGenPath="$2"
|
||||||
|
|
||||||
run systemctl --user daemon-reload
|
if [[ -v DRY_RUN ]]; then
|
||||||
|
echo systemctl --user daemon-reload
|
||||||
|
else
|
||||||
|
systemctl --user daemon-reload
|
||||||
|
fi
|
||||||
|
|
||||||
systemdPostReload
|
systemdPostReload
|
||||||
|
|||||||
Reference in New Issue
Block a user