Compare commits
2 Commits
9fd9b8b878
...
95dd1a1fab
Author | SHA1 | Date | |
---|---|---|---|
95dd1a1fab | |||
2f9b0f12f9 |
@ -93,6 +93,8 @@
|
||||
image if there are records in pstore, because that interferes with
|
||||
``config.log.persistent``
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
root@OpenWrt:~# fw_setenv orig_boot_production $(fw_printenv -n boot_production)
|
||||
root@OpenWrt:~# fw_setenv orig_bootcmd $(fw_printenv -n bootcmd)
|
||||
root@OpenWrt:~# fw_setenv boot_production 'led $bootled_pwr on ; ubifsmount ubi0:liminix && ubifsload ''${loadaddr} boot/fit && bootm ''${loadaddr}'
|
||||
|
@ -21,15 +21,16 @@
|
||||
let
|
||||
inherit (pkgs.liminix.services) longrun;
|
||||
inherit (pkgs) writeText;
|
||||
nginx_uid = 62;
|
||||
in {
|
||||
config = {
|
||||
users.nginx = {
|
||||
uid = 52; gid= 52;
|
||||
uid = nginx_uid; gid= nginx_uid;
|
||||
dir = "/run/";
|
||||
shell = "/bin/false";
|
||||
};
|
||||
groups.nginx = {
|
||||
gid= 52;
|
||||
gid= nginx_uid;
|
||||
usernames = ["nginx"];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user