diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-09 07:39:58 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-09 07:39:58 (EST) |
commit | a21cbd9795914134525b343e1a6e7c3cfd0eccaa (patch) | |
tree | 86fc2f01372f91c894e12662209222d74bf966a3 /src/profile | |
parent | 7faf9cf935f4f4f2650f6d8b2198e530076e7c3f (diff) |
profile/proteanos: Don't run cut link during init
Diffstat (limited to 'src/profile')
-rw-r--r-- | src/profile/proteanos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh index b9b41e3..61a8439 100644 --- a/src/profile/proteanos.sh +++ b/src/profile/proteanos.sh @@ -31,7 +31,7 @@ start() { log "Configuring packages" printf "disabled\n" >/etc/rc.policy - opkg install $(opkg list-installed | cut -d " " -f 1) + opkg install $(opkg list-installed | busybox cut -d " " -f 1) printf "enabled\n" >/etc/rc.policy rm -f "${SCRIPT}" } |