diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2013-02-05 18:06:27 +0100 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2013-02-05 18:06:27 +0100 |
commit | 763f34bf0cc263ba877b1933944f700fc29f3139 (patch) | |
tree | 3be17d27197b803e93df96ab64f7145327d74b21 /src | |
parent | 5d8d9e7ece307ae68c938d580900ec0424cdafbf (diff) | |
download | netctl-763f34bf0cc263ba877b1933944f700fc29f3139.tar.gz netctl-763f34bf0cc263ba877b1933944f700fc29f3139.tar.xz |
Disallow direct systemctl usage for profiles
This is meant to reduce confusion where netctl should be used instead of
systemctl.
Diffstat (limited to 'src')
-rwxr-xr-x | src/netctl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -96,8 +96,9 @@ unit_enable() { if [[ -n $After ]]; then printf 'After="netctl@%s.service"\n' "${After[@]//\"/\\\"}" >> "$unit" fi + echo "ln -s '$unit' '${unit/system\//system/multi-user.target.wants/}'" + ln -s "$unit" "${unit/system\//system/multi-user.target.wants/}" systemctl daemon-reload - systemctl reenable "netctl@$1.service" } unit_disable() { |