Skip to content
Snippets Groups Projects
Select Git revision
  • 0be280cde5079c74cd1d010a1daadc7120cabd84
  • v2018.2.x default protected
  • 0x4A6F-rpi4
  • 0x4A6F-master
  • master
  • v2018.2.2-ffs
  • v2016.2.4-batmanbug
  • radv-filterd
  • v2016.2.x
  • hoodselector
  • v2016.1.x
  • babel
  • v2015.1.x
  • 2014.4.x
  • 2014.3.x
  • v2018.2.2-ffs0.1
  • v2018.2.1-ffs0.1
  • v2018.2.1
  • v2018.2-ffs0.1
  • v2018.2
  • v2018.1.4
  • v2018.1.3
  • v2018.1.2
  • v2018.1.1
  • v2018.1
  • v2017.1.8
  • v2017.1.7
  • v2017.1.6
  • v2017.1.5
  • v2017.1.4
  • v2017.1.3
  • v2017.1.2
  • v2016.2.7
  • v2017.1.1
  • v2017.1
35 results

0010-base-files-fix-user-creation-on-sysupgrade-with-few-opkg-control-files.patch

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    0010-base-files-fix-user-creation-on-sysupgrade-with-few-opkg-control-files.patch 1.15 KiB
    From: Matthias Schiffer <mschiffer@universe-factory.net>
    Date: Tue, 24 Jan 2017 18:55:13 +0100
    Subject: base-files: fix user creation on sysupgrade with few opkg control files
    
    If only a single opkg control file exists (which can happen with
    CONFIG_CLEAN_IPKG), grep would not print the file name by default. Instead
    of forcing it using -H, we just switch to -l (print only file names) and
    get rid of the cut.
    
    Add -s to suppress an error message when no control files exist.
    
    Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
    
    diff --git a/package/base-files/files/etc/uci-defaults/13_fix_group_user b/package/base-files/files/etc/uci-defaults/13_fix_group_user
    index deade5bbd1876cd3f009d4c0b18be258c3bf36d1..e6dae2419f65a830ebd039fbbfa0fd22d1a2d0a1 100644
    --- a/package/base-files/files/etc/uci-defaults/13_fix_group_user
    +++ b/package/base-files/files/etc/uci-defaults/13_fix_group_user
    @@ -2,7 +2,7 @@
     
     . /lib/functions.sh
     
    -for file in `grep Require-User /usr/lib/opkg/info/*.control | cut -d: -f1`; do
    +for file in `grep -sl Require-User /usr/lib/opkg/info/*.control`; do
     	file="${file##*/}"
     	file="${file%.control}"
     	add_group_and_user "${file}"