diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-02-22 15:26:37 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-02-22 15:26:37 -0800 |
commit | 70fc3647a6ea8bd29647fd0e9825d49ea7f6f9cf (patch) | |
tree | a18f2165cb113aa2a92f646750b41fe2af9f1b5e /scripts | |
parent | 8db8c057e889839fed65353070a15a8b70212e19 (diff) | |
download | vyatta-cfg-system-70fc3647a6ea8bd29647fd0e9825d49ea7f6f9cf.tar.gz vyatta-cfg-system-70fc3647a6ea8bd29647fd0e9825d49ea7f6f9cf.zip |
use vyattacfg for config files
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-system | 4 | ||||
-rwxr-xr-x | scripts/vyatta_net_name | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/install-system b/scripts/install-system index a05141ff..44582364 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -467,7 +467,7 @@ copy_config () { mkdir -p $rootfsdir$ofrconfdir # create the proper perms on the new config partition - chgrp quaggavty $rootfsdir$ofrconfdir + chgrp vyattacfg $rootfsdir$ofrconfdir chmod 775 $rootfsdir$ofrconfdir # create our config partition marker @@ -513,7 +513,7 @@ copy_config () { # set the permissions on the new config file if [ -f $rootfsdir$ofrconfdir/config.boot ]; then - chgrp quaggavty $rootfsdir$ofrconfdir/config.boot + chgrp vyattacfg $rootfsdir$ofrconfdir/config.boot chmod 775 $rootfsdir$ofrconfdir/config.boot fi } diff --git a/scripts/vyatta_net_name b/scripts/vyatta_net_name index 61792340..8017906f 100755 --- a/scripts/vyatta_net_name +++ b/scripts/vyatta_net_name @@ -60,7 +60,7 @@ done if [ ! -f $BOOTFILE ] ; then cp $DEFAULT_BOOTFILE $BOOTFILE - chgrp quaggavty $BOOTFILE + chgrp vyattacfg $BOOTFILE chmod 660 $BOOTFILE fi |